How to use CTAGS and VIM in case_inensitive way?

I use ctags in combination with VIM, which is a pretty powerful combination to speed up coding. To enable autocomplete for a set of IDL routines, I created a CTAGS file with the contents of the IDL source code that I want to use. So far so good.

The problem that I am facing now is that when I start typing in VIM the name of one of the IDL library functions in another case than the one used to define the library, VIM will not be able to find it. The question then becomes: is there a way to minimize the case in autocomplete using VIM and CTAGS?

Thanks a lot!

+4
source share
1 answer

See help tag-regexp . It will use the value of the parameter 'ignorecase' .

+4
source

Source: https://habr.com/ru/post/1338694/


All Articles