summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJohn Hawthorn <john.hawthorn@gmail.com>2014-09-29 21:00:13 -0700
committerJohn Hawthorn <john.hawthorn@gmail.com>2014-09-29 21:00:13 -0700
commit3db8d503319723c8c1a2950fdcc04f7684c8aa82 (patch)
tree47ce8989ba0b5c37b90c1bf4d8fc8357f526b444 /README.md
parentc1a04667078930fa012f8ddea534169e0f54fd57 (diff)
silent causing issues for OS X users apparently
See garybernhardt/selecta#56
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 9f02f5c..33203ea 100644
--- a/README.md
+++ b/README.md
@@ -25,7 +25,7 @@ fzy can be integrated very simply in vim. There is also [fzy-vim](https://github
``` vim
function! FzyCommand(choice_command, vim_command)
try
- silent let output = system(a:choice_command . " | fzy ")
+ let output = system(a:choice_command . " | fzy ")
catch /Vim:Interrupt/
" Swallow errors from ^C, allow redraw! below
endtry