emacs 边距的颜色

emacs 边距的颜色

通过我的 .emacs 中的以下内容,我在文本模式缓冲区中得到了狭窄的边距:

(defun my-set-margins ()
  "Set margins in current buffer."
  (setq left-margin-width 30)
  (setq right-margin-width 30))

(add-hook 'text-mode-hook 'my-set-margins)

如何更改似乎界定这些边距的线条的颜色,使其与我的背景颜色相同,而不是像现在这样黑色?

当前页边距带有黑线

编辑

我现在知道更多了,这是我的问题:

如何添加一个钩子来在文本模式下转动边缘?

答案1

这有效:

(set-face-attribute 'fringe nil :background "#2E2920" :foreground "#2E2920")

#2E2920作为我的背景颜色。

相关内容