Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
04532316
Commit
04532316
authored
Sep 11, 2013
by
Robby Russell
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2002 from stibinator/master
added duckduckduck go to the web-search plugin
parents
475fb3a2
b9474c41
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
4 deletions
+17
-4
web-search.plugin.zsh
plugins/web-search/web-search.plugin.zsh
+17
-4
No files found.
plugins/web-search/web-search.plugin.zsh
View file @
04532316
...
...
@@ -11,7 +11,7 @@ function web_search() {
fi
# check whether the search engine is supported
if
[[
!
$1
=
~
'(google|bing|yahoo)'
]]
;
if
[[
!
$1
=
~
'(google|bing|yahoo
|duckduckgo
)'
]]
;
then
echo
"Search engine
$1
not supported."
return
1
...
...
@@ -24,8 +24,12 @@ function web_search() {
$open_cmd
"
$url
"
return
fi
url
=
"
${
url
}
/search?q="
if
[[
$1
==
'duckduckgo'
]]
;
then
#slightly different search syntax for DDG
url
=
"
${
url
}
/?q="
else
url
=
"
${
url
}
/search?q="
fi
shift
# shift out $1
while
[[
$#
-gt
0
]]
;
do
...
...
@@ -34,10 +38,19 @@ function web_search() {
done
url
=
"
${
url
%?
}
"
# remove the last '+'
$open_cmd
"
$url
"
}
alias
bing
=
'web_search bing'
alias
google
=
'web_search google'
alias
yahoo
=
'web_search yahoo'
alias
ddg
=
'web_search duckduckgo'
#add your own !bang searches here
alias
wiki
=
'web_search duckduckgo \!w'
alias
news
=
'web_search duckduckgo \!n'
alias
youtube
=
'web_search duckduckgo \!yt'
alias
map
=
'web_search duckduckgo \!m'
alias
image
=
'web_search duckduckgo \!i'
alias
ducky
=
'web_search duckduckgo \!'
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment