Xinwei Gong
Xinwei Gong

Reputation: 35

how to let vim list tags instead of jump to the first matched one when using vim -t sometag

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

Answers (1)

Amadan
Amadan

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

Related Questions