22

我很乐意使用非常柔和的字符“>>”而不是空格,如下所示:

Mono 开发 http://primates.ximian.com/~miguel/pictures/Valabinding-classpad.png

如何在 Emacs 中实现这一点?

4

4 回答 4

24

编辑:刚刚意识到空白模式已被whitespace取代。加载这个并自定义whitespace-style至少包含tabsand tabs-mark。我目前有:

(setq whitespace-style '(trailing tabs newline tab-mark newline-mark))

还有空白模式可以让你实现你想要的,它给你一些很好的功能来清理你喜欢的空白: http ://www.emacswiki.org/emacs/BlankMode

于 2009-02-20T10:11:02.177 回答
18

在我的 Emacs 版本 (24.3) 上,不需要额外的模块。启动就够了

M-x whitespace-mode

要自定义转到whitespace-style变量帮助,

C-h C-h v whitespace-style

这种模式有很多功能。为了使其更简单,可以选择不使用“面部可视化”。

于 2013-09-17T13:02:07.453 回答
7

使用“M-:”(Mx eval-expression)并输入以下表达式:

(let ((d (make-display-table))))
  (aset d 9 (向量 ?> ?>))
  (set-window-display-table nil d))

要恢复正常,请输入:

(set-window-display-table nil nil)
于 2009-02-20T09:42:34.477 回答
3

谷歌搜索提出了show whitespace-mode。自己没试过。

于 2009-02-20T09:42:13.887 回答