emacs/orgmode 与 Mac/PC 的标题视图不同?
我对 PC 和 Mac 使用相同的组织模式 (7.01h)。 问题是,对于标题,Mac 通过将所有前 * 的颜色更改为与背景相同,仅显示最后一个 *,而 PC 中的 orgmode 显示所有 *。 我更喜欢Mac的方式。
是什么造成了这种差异?如何只显示标题中的最后一个*?
I use the same org mode (7.01h) for PC and Mac.
The thing is that for headline, the mac shows only the last * by changing all the pre *'s color to the same as the background, whereas the orgmode in PC shows all the *'s.
I prefer Mac's way.
What makes this difference? How can I show only the last * in the headline?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
设置变量
org-hide-leading-stars
。您可以在您的文件中使用
Mxcustomize-variable
org-hide-leading-stars
或只是(setq 'org-hide-leading-stars)
.emacs 文件。Set the variable
org-hide-leading-stars
.You can either
M-x customize-variable
org-hide-leading-stars
or just(setq 'org-hide-leading-stars)
in your .emacs file.我不确定是什么原因导致您使用的两个操作系统之间存在差异,但您可以通过将
#+STARTUP: hidestars
添加到您的组织文件顶部来选择隐藏星星。有关详细信息,请查看有关缓冲区内设置的手册页
I'm not sure what causes the difference between the two operating systems you use, but you can choose to hide the stars by adding
#+STARTUP: hidestars
to the top of your org file. For more information check the manual page on in-buffer settings