Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
525 views
in Technique[技术] by (71.8m points)

c# - How to make forward-word, backward-word, treat underscore as part of a word?

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?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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...


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

57.0k users

...