Emacs

在 emacs org-mode,Ubuntu 中禁用斜體

  • July 11, 2014

我在禁用 emacs 中的斜體時遇到了一些麻煩。

我已經嘗試過:

'(italic ((t nil)))

.emacs. 但是還有一個問題。

雖然它不會將/和之間的文本斜體/,但這些/s 會消失。所以,當我想寫:

/home/Quora/

它實際上顯示:

home/Quora

當我鍵入時,如何避免emacs嘗試改變面部並使用標記/something/

我在 Ubuntu 的 emacs 24 中使用 org 模式。

找到解決方案:

我不得不禁用標記//s。

前往並從列表中M-customize-variable RET org-emphasis-alist RET刪除了該項目。/

要從自定義模式禁用斜體和粗體:

M-x customize-face RET italic RET

取消標記標記的框Slant:

然後,點擊Save for future sessions

M-x customize-face RET bold RET

取消標記標記的框Weight:

在你的 .emacs 中做同樣的事情:

(custom-set-faces
'(bold ((t nil)))
'(italic ((((supports: slant italic)) nil))
)

如果已經有一個custom-set-faces部分,只需將中間的 2 行添加到它。

引用自:https://unix.stackexchange.com/questions/107536