Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matt-snider/vim-tagquery
A vim plugin that lets you search with multiple tags.
https://github.com/matt-snider/vim-tagquery
ctags fzf query search tags vim vimwiki
Last synced: 12 days ago
JSON representation
A vim plugin that lets you search with multiple tags.
- Host: GitHub
- URL: https://github.com/matt-snider/vim-tagquery
- Owner: matt-snider
- Created: 2019-02-26T21:35:27.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-01T21:44:53.000Z (about 4 years ago)
- Last Synced: 2023-10-19T22:22:26.631Z (about 1 year ago)
- Topics: ctags, fzf, query, search, tags, vim, vimwiki
- Language: Vim script
- Homepage:
- Size: 8.79 KB
- Stars: 9
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vim-tagquery
A vim plugin that enables improved querying of tags.
Currently, this depends on [fzf.vim](https://github.com/junegunn/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:
```viml
noremap :FzfTagQuery
```## Installation
Using [`vim-plug`](https://github.com/junegunn/vim-plug):
```vim
Plug 'matt-snider/vim-tagquery', { 'do': 'bash install.sh' }
```## Configuration
Path to the vimwiki ctags file:
`let g:tagquery_ctags_file = '~/vimwiki/.vimwiki_tags'`