为什么org子项目会多显示一个站位的“*”?

如图中,第二行子项是从光标处开始的,但是前面有个白色的“*”站位,导致看起来像是第三级。。这个怎么去掉活着用空格占位?

1 个赞

这个你重启 Emacs 有颜色的站位就没有了,之前换主题的时候也存在这个问题。

一直都存在。。

我用的 solarized-light 主题貌似没有这个问题。

知道问题了,custom.el里面不知怎么多了这个配置:

(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(default ((t (:background "nil"))))
 '(org-level-1 ((t (:inherit outline-1 :height 1.0))))
'(org-level-2 ((t (:inherit outline-2 :height 1.0))))
'(org-level-3 ((t (:inherit outline-3 :height 1.0))))
'(org-level-4 ((t (:inherit outline-4 :height 1.0))))
'(org-level-5 ((t (:inherit outline-5 :height 1.0)))))

删了后,gui没问题了,但是terminal里面的还是有这个问题