mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-17 19:30:10 +00:00
feat(web-search): add support for Brave search engine (#11106)
This commit is contained in:
parent
b9be3a43b4
commit
52e848ce8f
2 changed files with 20 additions and 17 deletions
|
@ -25,9 +25,10 @@ $ google oh-my-zsh
|
||||||
Available search contexts are:
|
Available search contexts are:
|
||||||
|
|
||||||
| Context | URL |
|
| Context | URL |
|
||||||
|-----------------------|------------------------------------------|
|
| --------------------- | ---------------------------------------- |
|
||||||
| `bing` | `https://www.bing.com/search?q=` |
|
| `bing` | `https://www.bing.com/search?q=` |
|
||||||
| `google` | `https://www.google.com/search?q=` |
|
| `google` | `https://www.google.com/search?q=` |
|
||||||
|
| `brs` or `brave` | `https://search.brave.com/search?q=` |
|
||||||
| `yahoo` | `https://search.yahoo.com/search?p=` |
|
| `yahoo` | `https://search.yahoo.com/search?p=` |
|
||||||
| `ddg` or `duckduckgo` | `https://www.duckduckgo.com/?q=` |
|
| `ddg` or `duckduckgo` | `https://www.duckduckgo.com/?q=` |
|
||||||
| `sp` or `startpage` | `https://www.startpage.com/do/search?q=` |
|
| `sp` or `startpage` | `https://www.startpage.com/do/search?q=` |
|
||||||
|
|
|
@ -9,6 +9,7 @@ function web_search() {
|
||||||
$ZSH_WEB_SEARCH_ENGINES
|
$ZSH_WEB_SEARCH_ENGINES
|
||||||
google "https://www.google.com/search?q="
|
google "https://www.google.com/search?q="
|
||||||
bing "https://www.bing.com/search?q="
|
bing "https://www.bing.com/search?q="
|
||||||
|
brave "https://search.brave.com/search?q="
|
||||||
yahoo "https://search.yahoo.com/search?p="
|
yahoo "https://search.yahoo.com/search?p="
|
||||||
duckduckgo "https://www.duckduckgo.com/?q="
|
duckduckgo "https://www.duckduckgo.com/?q="
|
||||||
startpage "https://www.startpage.com/do/search?q="
|
startpage "https://www.startpage.com/do/search?q="
|
||||||
|
@ -47,6 +48,7 @@ function web_search() {
|
||||||
|
|
||||||
|
|
||||||
alias bing='web_search bing'
|
alias bing='web_search bing'
|
||||||
|
alias brs='web_search brave'
|
||||||
alias google='web_search google'
|
alias google='web_search google'
|
||||||
alias yahoo='web_search yahoo'
|
alias yahoo='web_search yahoo'
|
||||||
alias ddg='web_search duckduckgo'
|
alias ddg='web_search duckduckgo'
|
||||||
|
|
Loading…
Reference in a new issue