Browse Source

Silence nohup output in web-search plugin

Marc Cornellà 9 years ago
parent
commit
adaea31ca0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/web-search/web-search.plugin.zsh

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

@@ -39,7 +39,7 @@ function web_search() {
     url="${(j://:)${(s:/:)urls[$1]}[1,2]}"
   fi
 
-  nohup $open_cmd "$url" >/dev/null 2&>1
+  nohup $open_cmd "$url" &>/dev/null
 }