From 8d1beed7af1dc29939a4eef9786e7429dd6bdca1 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Thu, 25 Aug 2016 02:19:32 +0900 Subject: [PATCH] Updated Examples (vim) (markdown) --- Examples-(vim).md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Examples-(vim).md b/Examples-(vim).md index 9c9efdc..184c860 100644 --- a/Examples-(vim).md +++ b/Examples-(vim).md @@ -113,8 +113,8 @@ command! -bang Buffers call fzf#run(fzf#wrap('buffers', ### `locate` command integration ```vim -command! -nargs=1 Locate call fzf#run( - \ {'source': 'locate ', 'sink': 'e', 'options': '-m'}) +command! -nargs=1 Locate call fzf#run(fzf#wrap( + \ {'source': 'locate ', 'options': '-m'})) ``` `:Locate /` will list every file on the system. So make sure that you're using Go version of fzf which is significantly faster than the old Ruby version.