A vim plugin that enables improved querying of tags.
Currently, this depends on fzf.vim, but there are plans for a command that does not require it.
This finds all locations with the tags foo
and bar
, but not bazz
. It will put the results in a filterable fzf
buffer with a preview of the file:
:FzfTagQuery foo & bar & !bazz
An example binding:
noremap <C-t> :FzfTagQuery
Using vim-plug
:
Plug 'matt-snider/vim-tagquery', { 'do': 'bash install.sh' }
Path to the vimwiki ctags file:
let g:tagquery_ctags_file = '~/vimwiki/.vimwiki_tags'