emacs技巧

emacs全字匹配搜索方法

比较方便全字搜索方法:
how to search a word, example search fword
C-M-s \
continue press C-M-sto search next match

即利用表达式搜索,命令是C-M-s
连续按C-M-s,可以自动搜索下一个匹配的。

删除行末空格

Emacs提供了一个删除当前buffer中行尾空格和TAB等whitespace,以及文件后的空白多余行
M-x delete-trailing-whitespace .

自动删除行末空格
(add-hook ‘before-save-hook ‘delete-trailing-whitespace)

你可能感兴趣的:(emacs技巧)