Unverified Commit 47eae26b authored by Kshitij Nikhal's avatar Kshitij Nikhal Committed by GitHub
Browse files

web-search: add wolframalpha search engine (#8638)

parent 1381da15
...@@ -39,6 +39,7 @@ Available search contexts are: ...@@ -39,6 +39,7 @@ Available search contexts are:
| `qwant` | `https://www.qwant.com/?q=` | | `qwant` | `https://www.qwant.com/?q=` |
| `givero` | `https://www.givero.com/search?q=` | | `givero` | `https://www.givero.com/search?q=` |
| `stackoverflow` | `https://stackoverflow.com/search?q=` | | `stackoverflow` | `https://stackoverflow.com/search?q=` |
| `wolframalpha` | `https://wolframalpha.com/input?i=` |
Also there are aliases for bang-searching DuckDuckGo: Also there are aliases for bang-searching DuckDuckGo:
......
...@@ -19,6 +19,7 @@ function web_search() { ...@@ -19,6 +19,7 @@ function web_search() {
qwant "https://www.qwant.com/?q=" qwant "https://www.qwant.com/?q="
givero "https://www.givero.com/search?q=" givero "https://www.givero.com/search?q="
stackoverflow "https://stackoverflow.com/search?q=" stackoverflow "https://stackoverflow.com/search?q="
wolframalpha "https://www.wolframalpha.com/input/?i="
) )
# check whether the search engine is supported # check whether the search engine is supported
...@@ -55,6 +56,7 @@ alias goodreads='web_search goodreads' ...@@ -55,6 +56,7 @@ alias goodreads='web_search goodreads'
alias qwant='web_search qwant' alias qwant='web_search qwant'
alias givero='web_search givero' alias givero='web_search givero'
alias stackoverflow='web_search stackoverflow' alias stackoverflow='web_search stackoverflow'
alias wolframalpha='web_search wolframalpha'
#add your own !bang searches here #add your own !bang searches here
alias wiki='web_search duckduckgo \!w' alias wiki='web_search duckduckgo \!w'
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment