Fadi Beyrouti
Fadi Beyrouti

Reputation: 31

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

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

Upvotes: 3

Views: 461

Answers (1)

Trey Jackson
Trey Jackson

Reputation: 74430

Well, given that find-file-in-tags is using string-match to do the matching, setting the value of case-fold-search should do the trick.

It does for me.

Note: since find-file-in-tags isn't distributed with Emacs, you might want to include a link to the package you're using in your question. It'd help people answer your question.

Upvotes: 1

Related Questions