我真的很想在 Emacs 中禁用斜体样式。
在 this 帖子中解释了如何禁用粗体和下划线,但不是斜体。
有谁知道这是怎么做到的吗?
使用制表符完成,我可以看到我有这些可用
set-face-background set-face-background-pixmap
set-face-font set-face-foreground
set-face-inverse-video-p set-face-stipple
set-face-underline set-face-underline-p
最佳答案
它实际上是以非常相似的方式完成的:
(set-face-italic-p 'italic nil)
有关更多详细信息,请参阅该函数的文档(C-h f set-face-italic-p)
关于emacs - 在 Emacs 中禁用斜体?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3375088/