Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to isearch/search-replace/occur only in code (that is not in comments or strings).

This must be a common problem, so what packages do this already?

If no existing packages do this, I'm thinking a minor-mode where strings and comments are hidden based on fontification would do the trick. Is there one?

share|improve this question
Here's a related discussion on emacs-devel. Apparently the problem is that you can hide those parts, but replace won't take it into account and does its thing in the hidden part too. – Tom Sep 26 '11 at 13:54

3 Answers

Icicles search gives you several ways to do this. Here are two:

  • Search "things" (e.g. defuns, sexps, xml elements, etc.), ignoring comments (option icicle-ignore-comments-flag). That is, use selected code segments as search contexts, but ignore any comments within code or code inside comments.

  • Search the complement of the comments. E.g., define the search contexts as the complement of the zones of text that are font-locked with either face font-lock-comment-face or face font-lock-comment-delimiter-face (which means search all code outside of comments).

After defining the search contexts, just type text to incrementally filter the contexts. And you can replace any matches on demand.

share|improve this answer

Check out narrowing.

share|improve this answer
Whoops, i missed the word "code" from that question. Well, since narrowing is so awesome, ill shamelessly leave the answer here. Perhaps you could use narrowing and the syntax table with some elisp do do the trick. – Johan Benum Evensberget Sep 26 '11 at 13:09
The problem with narrowing it can only narrow the buffer to a contiguous block. It would be very nice if emacs would support multiple regions for narrowing. – Tom Sep 26 '11 at 13:36

Yes, you are right. The HideShow minor mode allows you to hide/show block of text, in particular multiline comments.

The hide/show comments is not part of the standard package but on the wiki page you will find the code which does the trick.

Then isearch command does not take into account the hidden comments.

HOWEVER: replace operates on the whole buffer, including hidden blocks.

share|improve this answer
Tried it with emacs 23.2, hid some java code and search-replace modified the contents of the hidden block as well, so it's not really an answer to the question. – Tom Sep 26 '11 at 13:43
Yes, the replace operates on the whole buffer. isearch, however, does not look into hidden blocks – Oleg Pavliv Sep 26 '11 at 13:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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