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

add jump to tags example

atn34
2014-10-18 19:18:32 -07:00
parent 48b065cbe0
commit 3e460d25b7

@@ -300,6 +300,20 @@ command! FZFMru call fzf#run({
\})
```
Jump to tags
---
```vimL
function! TagList()
return map(taglist('.*'), 'v:val["name"]')
endfunction
command! FZFTag call fzf#run({
\ 'source' : TagList(),
\ 'sink' : 'tag',
\ })
```
Fuzzy cmdline completion
---