web-dev-qa-db-ja.com

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)

これらの余白を区切るように見える線の色を変更して、背景色と同じにし、現在のように黒ではないようにするにはどうすればよいですか?

Current margins with black lines

[〜#〜]編集[〜#〜]

私は今もっと知っています、そしてこれは私の質問です:

テキストモードでフリンジを回転させるためのフックを追加するにはどうすればよいですか?

1
MajorBriggs

これはうまくいきました:

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

#2E2920私の背景色です。

2
MajorBriggs