Neovim plugin to update tags file using ctags
Go to file
2019-05-07 09:30:32 +02:00
rplugin Migrate to pynvim 2019-05-07 09:30:32 +02:00
.gitlab-ci.yml TASK: Fix docker push url 2017-05-19 16:08:45 +02:00
Dockerfile Migrate to pynvim 2019-05-07 09:30:32 +02:00
readme.rst TASK: Configure pyfakefs version to use 2017-08-07 09:05:17 +02:00

About

Basic ctags auto update plugin for Neovim.

Makes use of neovims async plugin API, so non blocking.

Will not use some checks but lookup the whole path to find tags file.

Requirements

  • Python3
  • Neovim

Installation

See https://github.com/neovim/python-client/#installation and:

You need to run :UpdateRemotePlugins in nvim for changes in the specifications to have effect. For details see :help remote-plugin in nvim.

Options

All options are set through:

let g:neotags_option_name = value

The following options are available:

  • let g:neotags_tags_filename = "tags"

    Defines which file name the generated tags file has.

  • let g:neotags_ctags_cmd = "ctags"

    Defines the binary to use for generation.

  • let g:neotags_logging = 0

    Defines whether to log anything to vims messages.

Development

Install dependencies:

  • pip install pyfakefs==3.1

Run tests:

cd rplugin && python -m unittest test.test_neotags