mirror of
https://github.com/junegunn/fzf.git
synced 2025-11-20 01:23:43 -05:00
add jump to tags example
14
Examples.md
14
Examples.md
@@ -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
|
Fuzzy cmdline completion
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user