How can I do a case-sensitive tags-search in Emacs?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Building on your answer, this is what you need:

(set-default case-fold-search nil)

which sets the default value, which will affect all buffers that haven't set the value locally.

link|improve this answer
feedback

If you set the variable case-fold-search to nil, then all letters must match exactly, including case.

Correction to Trey Jackson's answer:

(set-default 'case-fold-search nil)

You need to quote the variable.

link|improve this answer
But this is only per buffer, need a global setting. – WilliamKF Nov 23 '10 at 3:16
feedback

Your Answer

 
or
required, but never shown

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