Is there case-insensitive find-file-in-tags?

find-file-in-tagsdoes a great job of extracting files in a large code base. However, it is case sensitive. Is there a case-insensitive version? If not, is there an easy way to make case insensitive? I tried a bunch of things, but was not successful.

+3
source share
1 answer

Well, given what it find-file-in-tagsuses string-matchto perform the mapping, setting the value case-fold-searchshould do the trick.

This is for me.

Note. Since it is find-file-in-tagsnot distributed with Emacs, you can include the link in the package that you use in your question. This will help people answer your question.

+1
source

All Articles