0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

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

This commit is contained in:
Tulsi Prasad 2024-09-10 18:53:37 +05:30 committed by GitHub
parent 2abecedf67
commit f6cd6a7769
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 10 additions and 7 deletions

View file

@ -50,16 +50,17 @@ Available search contexts are:
| `npmpkg` | `https://www.npmjs.com/search?q=` | | `npmpkg` | `https://www.npmjs.com/search?q=` |
| `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=` |
Also there are aliases for bang-searching DuckDuckGo: Also there are aliases for bang-searching DuckDuckGo:
| Context | Bang | | Context | Bang |
| --------- | ----- | | ------- | ---- |
| `wiki` | `!w` | | `wiki` | `!w` |
| `news` | `!n` | | `news` | `!n` |
| `map` | `!m` | | `map` | `!m` |
| `image` | `!i` | | `image` | `!i` |
| `ducky` | `!` | | `ducky` | `!` |
### Custom search engines ### Custom search engines

View file

@ -31,6 +31,7 @@ function web_search() {
npmpkg "https://www.npmjs.com/search?q=" npmpkg "https://www.npmjs.com/search?q="
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="
) )
# check whether the search engine is supported # check whether the search engine is supported
@ -83,6 +84,7 @@ alias dockerhub='web_search dockerhub'
alias npmpkg='web_search npmpkg' 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'
#add your own !bang searches here #add your own !bang searches here
alias wiki='web_search duckduckgo \!w' alias wiki='web_search duckduckgo \!w'