Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 727 Bytes

README.md

File metadata and controls

33 lines (20 loc) · 727 Bytes

vim-tagquery

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.

Usage

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

Installation

Using vim-plug:

Plug 'matt-snider/vim-tagquery', { 'do': 'bash install.sh' }

Configuration

Path to the vimwiki ctags file:

let g:tagquery_ctags_file = '~/vimwiki/.vimwiki_tags'