diff --git a/Examples.md b/Examples.md index 39c8e0d..e704704 100644 --- a/Examples.md +++ b/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 ---