如何为特定缓冲区设置缓冲区本地face属性?

时间:2013-07-13 09:48:42

标签: emacs customization font-face org-mode emacs-faces

我只想更改Org-Agenda缓冲区中的face属性。 所以我需要在本地更改Org-Agenda面部属性缓冲区

这是我的代码:(全局)

(defun my-org-agenda-hl-line ()
  (hl-line-mode)
  (set-face-attribute 'hl-line nil
                  :box '(:color "deep pink" :line-width 2))
)
(add-hook 'org-agenda-mode-hook 'my-org-agenda-hl-line)

请帮我在本地制作这个缓冲区。感谢

2 个答案:

答案 0 :(得分:10)

以下是您需要做的事情:

;; First create new face which is a copy of hl-line-face
(copy-face 'hl-line 'hl-line-agenda-face)

;; Change what you want in this new face 
(set-face-attribute 'hl-line-agenda-face nil
                    :box '(:color "deep pink" :line-width 2))

;; The function to use the new face
(defun my-org-agenda-hl-line ()
  (set (make-local-variable 'hl-line-face) ; This is how to make it local
       'hl-line-agenda-face)
    (hl-line-mode))

;; Finally, the hook
(add-hook 'org-agenda-mode-hook 'my-org-agenda-hl-line)

答案 1 :(得分:0)

尝试face-remap-add-relative

(add-hook 'org-agenda-mode-hook
          (lambda ()
            (hl-line-mode)
            (face-remap-add-relative 'hl-line :box '(:color "deep pink" :line-width 2))))

另请参阅How to modify-face for a specific buffer