arnaud-lb / vim-php-namespace

PHP namespace support for VIM. Types "use" statements for you
256 stars 29 forks source link

Where to place the tag file #30

Closed croxarens closed 7 years ago

croxarens commented 7 years ago

After the installation, where should I place the file "tag" generated by the command ctags -R --PHP-kinds=cfi?

arnaud-lb commented 7 years ago

Usually the tags file is placed at the root of the project. By default, vim searches in the directory of the current file, and in the current working directory (if both exist, it uses both). This can be controlled with the 'tags' option: http://vimdoc.sourceforge.net/htmldoc/options.html#'tags'.

croxarens commented 7 years ago

Thanks so much @arnaud-lb