Neovim plugin to update tags file using ctags
Go to file
2017-05-19 15:39:22 +02:00
rplugin TASK: Fix pep8 line length 2017-05-19 15:39:22 +02:00
.gitlab-ci.yml FEATURE: Add test execution to gitlab 2017-05-19 15:20:35 +02:00
readme.rst TASK: Expand docs 2017-05-18 09:28:46 +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.