How to use CTAGS and VIM in a case_insensitive way?
I am using ctags in conjunction with VIM, which is a quite powerful combination to speed up coding. In order to enable autocompletion for a set of IDL routines I've generated the CTAGS file with the contents the IDL source code I want to use. So far so good.
The problem I am facing now is that when I start typing in VIM the name of one of the IDL library functions in a differen开发者_如何学编程t case than the one used to define the library, VIM would not be able to find it. The question then is, is there any way in which I can fold the case in the autocompletion using VIM and CTAGS?
Thanks a lot!
See help tag-regexp
. It will use the value of the 'ignorecase'
setting.
精彩评论