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.