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?
|
2
|
|
|
|
|
|
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
I don't know what "your c# mode" uses, but a quick |
||
|
|
|
|
||
|
|
|
|
You don't necessarily have to modify your syntax table. You can btw quickly look at the syntax table of a mode with |
||
|
|