Browse code

silent causing issues for OS X users apparently

See garybernhardt/selecta#56

John Hawthorn authored on 30/09/2014 04:00:13
Showing 1 changed files

... ...
@@ -25,7 +25,7 @@ fzy can be integrated very simply in vim. There is also [fzy-vim](https://github
25 25
 ``` vim
26 26
 function! FzyCommand(choice_command, vim_command)
27 27
   try
28
-    silent let output = system(a:choice_command . " | fzy ")
28
+    let output = system(a:choice_command . " | fzy ")
29 29
   catch /Vim:Interrupt/
30 30
     " Swallow errors from ^C, allow redraw! below
31 31
   endtry