Search code examples
vimctags

Check ctags set in vim


I have used

:sets tags=./tags

to set the tags in vimrc. What would be the vim command to see the tags set in the vim environment.


Solution

  • You can query any vim option value by appending a question mark after its name like so:

     :set tags?
    

    this works too

     :set tags
    

    If you want to list all the loaded tags:

     :tselect