From 227100ee5fcea654e1963052d608fae7e1e7cbe8 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Thu, 25 Aug 2016 02:20:13 +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 184c860..72bd779 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(fzf#wrap( - \ {'source': 'locate ', 'options': '-m'})) +command! -nargs=1 -bang Locate call fzf#run(fzf#wrap( + \ {'source': 'locate ', 'options': '-m'}, 0)) ``` `: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.