显示具有不同字符的选项卡 (Emacs)

发布于 2024-07-14 15:54:49 字数 260 浏览 4 评论 0原文

我很高兴能有一个非常温柔的角色“>>” 而不是空白,如下所示:

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

如何在 Emacs 中实现这一目标?

I'd be happy to have very soft character ">>" instead of white-space, like this:

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

How can I achieve that in Emacs?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

奢欲 2024-07-21 15:54:49

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

M-x whitespace-mode

启动自定义转到 whitespace-style 变量帮助

C-h C-h v whitespace-style

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

On my Emacs version (24.3) no additional modules are needed. It's enough to launch

M-x whitespace-mode

To customize go to whitespace-style variable help,

C-h C-h v whitespace-style

This mode has many functionalities. To made it simpler one may choose not to use `Face visualization'.

轮廓§ 2024-07-21 15:54:49

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

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

还有 blank-mode ,它允许您实现你想要的,它为你提供了一些很好的功能来根据你的喜好清理空白:
http://www.emacswiki.org/emacs/BlankMode

EDIT: Just realized that blank-mode is superseded by whitespace. Load this and customize whitespace-style to at least contain tabs and tabs-mark. I currently have:

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

There is also blank-mode which allows you to achive what you want and it gives you some nice functions to cleanup the whitespace to your likings:
http://www.emacswiki.org/emacs/BlankMode

无人问我粥可暖 2024-07-21 15:54:49

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

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

要恢复正常,请输入:

(set-window-display-table nil nil)

Use "M-:" (M-x eval-expression) and enter the following expression:

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

To get back to normal enter:

(set-window-display-table nil nil)
素年丶 2024-07-21 15:54:49

Google 搜索显示显示空白模式 。 我自己没试过。

Google search brought up show whitespace-mode. Haven't tried it myself.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文