Browse Source

feat(web-search): add `reddit` (#12664)

Francesco Cataldo 2 months ago
parent
commit
e52598a5cc
2 changed files with 3 additions and 0 deletions
  1. 1 0
      plugins/web-search/README.md
  2. 2 0
      plugins/web-search/web-search.plugin.zsh

+ 1 - 0
plugins/web-search/README.md

@@ -51,6 +51,7 @@ Available search contexts are:
 | `packagist`           | `https://packagist.org/?query=`                 |
 | `packagist`           | `https://packagist.org/?query=`                 |
 | `gopkg`               | `https://pkg.go.dev/search?m=package&q=`        |
 | `gopkg`               | `https://pkg.go.dev/search?m=package&q=`        |
 | `chatgpt`             | `https://chatgpt.com/?q=`                       |
 | `chatgpt`             | `https://chatgpt.com/?q=`                       |
+| `reddit`              | `https://www.reddit.com/search/?q=`             |
 
 
 Also there are aliases for bang-searching DuckDuckGo:
 Also there are aliases for bang-searching DuckDuckGo:
 
 

+ 2 - 0
plugins/web-search/web-search.plugin.zsh

@@ -32,6 +32,7 @@ function web_search() {
     packagist       "https://packagist.org/?query="
     packagist       "https://packagist.org/?query="
     gopkg           "https://pkg.go.dev/search?m=package&q="
     gopkg           "https://pkg.go.dev/search?m=package&q="
     chatgpt         "https://chatgpt.com/?q="
     chatgpt         "https://chatgpt.com/?q="
+    reddit          "https://www.reddit.com/search/?q="
   )
   )
 
 
   # check whether the search engine is supported
   # check whether the search engine is supported
@@ -85,6 +86,7 @@ alias npmpkg='web_search npmpkg'
 alias packagist='web_search packagist'
 alias packagist='web_search packagist'
 alias gopkg='web_search gopkg'
 alias gopkg='web_search gopkg'
 alias chatgpt='web_search chatgpt'
 alias chatgpt='web_search chatgpt'
+alias reddit='web_search reddit'
 
 
 #add your own !bang searches here
 #add your own !bang searches here
 alias wiki='web_search duckduckgo \!w'
 alias wiki='web_search duckduckgo \!w'