浏览代码

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))



正在加载...
取消
保存