feat(web-search): add chatgpt (#12660)

master
Tulsi Prasad 2 years ago committed by GitHub
parent 2abecedf67
commit f6cd6a7769
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 15
      plugins/web-search/README.md
  2. 2
      plugins/web-search/web-search.plugin.zsh

@ -50,16 +50,17 @@ Available search contexts are:
| `npmpkg` | `https://www.npmjs.com/search?q=` |
| `packagist` | `https://packagist.org/?query=` |
| `gopkg` | `https://pkg.go.dev/search?m=package&q=` |
| `chatgpt` | `https://chatgpt.com/?q=` |
Also there are aliases for bang-searching DuckDuckGo:
| Context | Bang |
| --------- | ----- |
| `wiki` | `!w` |
| `news` | `!n` |
| `map` | `!m` |
| `image` | `!i` |
| `ducky` | `!` |
| Context | Bang |
| ------- | ---- |
| `wiki` | `!w` |
| `news` | `!n` |
| `map` | `!m` |
| `image` | `!i` |
| `ducky` | `!` |
### Custom search engines

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

Loading…
Cancel
Save