up vote 11 down vote favorite
3
share [g+] share [fb]

In my C# mode, M-b and M-f are bound to {backward,forward}-word.

But these things stop at underscores, which I use sometimes as a prefix on member variables.

How do I get emacs to treat the underscore as a word character?

link|improve this question

feedback

3 Answers

up vote 10 down vote accepted

As huaiyuan mentioned, you ned to modify your syntax table. That said, what he posted modifies the current table...

Each language has a syntax table, e.g. For c++, you could do

(modify-syntax-entry ?_ "w" c++-mode-syntax-table)

I don't know what "your c# mode" uses, but a quick M-x apropos with a look up of syntax-table should help you find out...

link|improve this answer
1  
That did it. (modify-syntax-entry ?_ "w" csharp-mode-syntax-table) Thank you. – Cheeso Oct 10 '09 at 3:25
feedback

You don't necessarily have to modify your syntax table. _ belongs to the syntax class symbol in csharp-mode, so you may use forward-symbol instead of forward-word. forward-symbol is in thingatpt, which comes with emacs (at least 23).

You can btw quickly look at the syntax table of a mode with C-h s (describe-syntax).

link|improve this answer
feedback
(modify-syntax-entry ?_ "w")
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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