Browse Source

Merge pull request #3397 from peteches/master

Fixed output issues webith websearch plugin.
Robby Russell 9 years ago
parent
commit
fe2ccb30af
1 changed files with 1 additions and 2 deletions
  1. 1 2
      plugins/web-search/web-search.plugin.zsh

+ 1 - 2
plugins/web-search/web-search.plugin.zsh

@@ -37,8 +37,7 @@ function web_search() {
   done
   done
 
 
   url="${url%?}" # remove the last '+'
   url="${url%?}" # remove the last '+'
-  nohup $open_cmd "$url" 
- 	rm nohup.out	
+  nohup $open_cmd "$url" >/dev/null 2&>1
 }
 }