m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-18 16:45:38 -05:00

Updated Examples (vim) (markdown)

Junegunn Choi
2016-08-25 02:20:13 +09:00
parent 8d1beed7af
commit 227100ee5f

@@ -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 <q-args>', 'options': '-m'}))
command! -nargs=1 -bang Locate call fzf#run(fzf#wrap(
\ {'source': 'locate <q-args>', 'options': '-m'}, <bang>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.