summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
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