我发现font-lock-mode
正在对单个空格的宽度做错了,无论我使用的是什么等宽字体。
以下是一些截图:
使用DejaVu Sans Mono
:
font-lock-mode
:
font-lock-mode
关闭:
使用Luculent
:
font-lock-mode
:
font-lock-mode
关闭:
我的emacs init文件中的相关(可能)行:
(custom-set-variables
...
(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 (:inherit nil :stipple nil :inverse-video nil
:box nil :strike-through nil :overline nil
:underline nil :slant normal :weight normal
:height 120 :width normal
:foundry "unknown" :family "Luculent")))))
编辑:感谢@Boojum的帮助,我对3种不同风格的角色进行了C-u C-x =
。
This is结果。我想问题是SPC
没有“面子”属性。
此外,我还尝试切换到其他主要模式并发现
此问题仅发生在haskell-mode
。
答案 0 :(得分:1)
我不确定发生了什么,但看起来粗体文字的大小设置为略大于默认值。您对font-lock-keyword-face
进行了任何自定义吗?您是否有可能自定义面的站点配置文件?
可能有助于调试此问题的一点是在示例中的某些粗体文本上添加点,然后键入C-u C-x =
这将为您提供更多信息,了解它们的作用&## 39; s显示。也可以在某些默认(非粗体)文本上执行此操作。如果您在此处发布回复,我们可能会帮助您更好。