瀏覽代碼

Update face configs

master
10sr 4 年之前
父節點
當前提交
9ed2aa43b3
簽署人: 10sr GPG 金鑰 ID: C384BB17CBB19347
共有 1 個檔案被更改,包括 10 行新增2 行删除
  1. +10
    -2
      emacs.el

+ 10
- 2
emacs.el 查看文件

@@ -2932,8 +2932,16 @@ Any output will be written to current buffer."
;;;; Make the mark visible, and the visibility toggleable. ('mmv' means 'make
;;;; mark visible'.) By Patrick Gundlach, Teemu Leisti, and Stefan.

(defvar mmv-face-foreground
(face-foreground 'highlight)
"Foreground color for `mmv-face'.")

(defvar mmv-face-background
(face-background 'highlight)
"Gackground color for `mmv-face'.")

(defface mmv-face
'((t :background "maroon2" :foreground "white"))
`((t :background ,mmv-face-background :foreground ,mmv-face-foreground))
"Face used for showing the mark's position.")

(defvar-local mmv-mark-overlay nil
@@ -2971,7 +2979,7 @@ Any output will be written to current buffer."
(interactive)
(setq mmv-is-mark-visible (not mmv-is-mark-visible))
(if mmv-is-mark-visible
(set-face-attribute 'mmv-face nil :background "maroon2" :foreground "white")
(set-face-attribute 'mmv-face nil :background mmv-face-background :foreground mmv-face-foreground)
(set-face-attribute 'mmv-face nil :background 'unspecified :foreground 'unspecified))
(mmv-draw-mark))



Loading…
取消
儲存