diff options
author | Robby Russell <robby@planetargon.com> | 2014-12-20 12:36:27 -0800 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2014-12-20 12:36:27 -0800 |
commit | fe2ccb30af942372fa5facb3a7c256e943887c1a (patch) | |
tree | 269332e641b0b328ce7f40ac438b80148aa60c01 /plugins | |
parent | c63f27a9f2a324fa094ddcb4235f28b0254cc457 (diff) | |
parent | 1d2c1e8ab80922fb673a08440a8e2b33b9231de1 (diff) | |
download | zsh-fe2ccb30af942372fa5facb3a7c256e943887c1a.tar.gz zsh-fe2ccb30af942372fa5facb3a7c256e943887c1a.tar.bz2 zsh-fe2ccb30af942372fa5facb3a7c256e943887c1a.zip |
Merge pull request #3397 from peteches/master
Fixed output issues webith websearch plugin.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/web-search/web-search.plugin.zsh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/web-search/web-search.plugin.zsh b/plugins/web-search/web-search.plugin.zsh index 371e3a303..28559deb9 100644 --- a/plugins/web-search/web-search.plugin.zsh +++ b/plugins/web-search/web-search.plugin.zsh @@ -37,8 +37,7 @@ function web_search() { done url="${url%?}" # remove the last '+' - nohup $open_cmd "$url" - rm nohup.out + nohup $open_cmd "$url" >/dev/null 2&>1 } |