up vote 1 down vote favorite
share [g+] share [fb]

when I'm using Ctrl-] to jump to a tagname in vim it ignores ! and ? characters which can be used in ruby as parts of identifiers. i.e. when trying to jump to 'empty?' tag it complains about missing tag 'empty'.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Add the desired characters to the iskeyword option. Try:

:set iskeyword+=!,?
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.