Raghav
Raghav

Reputation: 796

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.

Upvotes: 1

Views: 149

Answers (1)

svlasov
svlasov

Reputation: 10456

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

Upvotes: 3

Related Questions