Reputation: 35
I'd like to make vim show a list of matched tags when using vim -t sometags instead of show the first matched one.
Thanks for advance.
Upvotes: 0
Views: 60
Reputation: 198334
As far as I know, you can't change the way -t
works. However, you can do something else:
vim +"ts sometag"
(See :help :tselect
)
Upvotes: 1