vote up 1 vote down star

In Emacs, by default, incremental search is case-insensitive. However, if you type any upper case characters as part of the search string, it becomes a case-sensitive search. So the question is, how do you easily perform a case-sensitive search of an all lower case pattern. The fewer the characters and easier to remember the better. I'm pretty sure this is built in, just can't recall how to do it.

flag

2 Answers

vote up 6 vote down check

Emacs' incremental search (that is, isearch-forward) has a lot of modifiers to change the current search's behavior which you can type on the fly immediately after C-s.

From isearch-forward's documentation:

Type M-c to toggle search case-sensitivity.

link|flag
vote up 0 vote down

Have (setq case-fold-search nil) in your .emacs or M-x set-variable case-fold-search nil.

link|flag
1  
I'm looking for an on the fly answer, i.e. normally I do want insensitive, but occasionally I wish to do lowercase sensitive momentarily. – WilliamKF Sep 26 at 17:15
set-variable should do the trick for you. You can set a keyboard shortcut for it and switch between the two type of searches. – Ashwin Sep 27 at 5:14

Your Answer

Get an OpenID
or

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