4

有没有办法根据特定条件动态更改模式行的颜色,例如,如果我在狭窄的视图中更改颜色,如果缓冲区是只读的,则更改为不同的颜色

非常感谢!

4

2 回答 2

8

您可以使用 apost-command-hook然后只评估您需要的任何内容并设置模式线面颜色。我这样做是为了在 3 种颜色之间进行更改,具体取决于我所处的邪恶模式状态以及缓冲区是否有任何未保存的更改。

(lexical-let ((default-color (cons (face-background 'mode-line)
                                   (face-foreground 'mode-line))))
  (add-hook 'post-command-hook
    (lambda ()
      (let ((color (cond ((minibufferp) default-color)
                         ((evil-insert-state-p) '("#e80000" . "#ffffff"))
                         ((evil-emacs-state-p)  '("#af00d7" . "#ffffff"))
                         ((buffer-modified-p)   '("#006fa0" . "#ffffff"))
                         (t default-color))))
        (set-face-background 'mode-line (car color))
        (set-face-foreground 'mode-line (cdr color))))))
于 2013-06-09T11:56:35.807 回答
3

我使用此代码。如果它是只读的,它会将左侧的缓冲区修改指示器着色为橙色,如果它被修改则着色为红色。当您缩小缓冲区时,它会将行号指示器着色为黄色。显然,您可能想自己更改格式。

(defface my-narrow-face
  '((t (:foreground "black" :background "yellow3")))
  "todo/fixme highlighting."
  :group 'faces)

(defface my-read-only-face
  '((t (:foreground "black" :background "orange3")))
  "Read-only buffer highlighting."
  :group 'faces)

(defface my-modified-face
  '((t (:foreground "gray80" :background "red4")))
  "Modified buffer highlighting."
  :group 'faces)

(setq-default
 mode-line-format
 '("  "
   (:eval (let ((str (if buffer-read-only
                         (if (buffer-modified-p) "%%*" "%%%%")
                       (if (buffer-modified-p) "**" "--"))))
            (if buffer-read-only
                (propertize str 'face 'my-read-only-face)
              (if (buffer-modified-p)
                  (propertize str 'face 'my-modified-face)
                str))))
   (list 'line-number-mode "  ")
   (:eval (when line-number-mode
            (let ((str "L%l"))
              (if (/= (buffer-size) (- (point-max) (point-min)))
                  (propertize str 'face 'my-narrow-face)
                str))))
   "  %p"
   (list 'column-number-mode "  C%c")
   "  " mode-line-buffer-identification
   "  " mode-line-modes))
于 2013-06-07T17:33:46.837 回答