m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-18 08:13:40 -05:00

Updated Examples (vim) (markdown)

Junegunn Choi
2016-08-25 02:19:32 +09:00
parent 8f0e63004f
commit 8d1beed7af

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