ฉันได้ดำเนินการนี้ได้โดยใช้hl-line-mode
buffer-list-update-hook
นี่คือรหัส:
(defface hl-line-inactive
'((t nil))
"Inactive variant of `hl-line'."
:group 'hl-line)
(defun hl-line-update-face (window)
"Update the `hl-line' face in WINDOW to indicate whether the window is selected."
(with-current-buffer (window-buffer window)
(when hl-line-mode
(if (eq (current-buffer) (window-buffer (selected-window)))
(face-remap-reset-base 'hl-line)
(face-remap-set-base 'hl-line (face-all-attributes 'hl-line-inactive))))))
(add-hook 'buffer-list-update-hook (lambda () (walk-windows #'hl-line-update-face nil t)))
รหัสนี้กำลังทำอะไรอยู่:
- กำหนดใบหน้าใหม่
hl-line-inactive
ที่จะใช้ในหน้าต่างที่ไม่ได้ใช้งาน คุณสามารถใช้M-x customize-face
เพื่อปรับเปลี่ยนคุณลักษณะของใบหน้านี้เพื่อรสนิยมของคุณ
- กำหนดฟังก์ชั่นเพื่อทำการแมปใบหน้าที่ไฮไลต์ชั่วคราวในหน้าต่างที่ไม่ได้ใช้งาน หน้าต่างถูกพิจารณาว่าไม่แอ็คทีฟหากไม่แสดงบัฟเฟอร์เดียวกันกับหน้าต่างที่เลือกในปัจจุบัน
- เพิ่มตะขอลงในการ
buffer-list-update-hook
เรียกhl-line-update-face
ใช้หน้าต่างที่มองเห็นได้ทั้งหมด
คำตอบเก่า
รหัสด้านบน (ซึ่งฉันใช้ในinit
ไฟล์ของฉันเอง) นั้นง่ายกว่าสิ่งที่ฉันโพสต์ในตอนแรก ขอบคุณ @Drew walk-windows
สำหรับข้อเสนอแนะในการใช้งาน ฉันยังอ่านเพิ่มเติมเกี่ยวกับการทำแผนที่ใบหน้าอีกด้วย (ดูการทำแผนที่ใบหน้าในคู่มือการใช้งาน Emacs Lisp) และตระหนักว่าฉันสามารถลบรหัสได้มาก
เพื่อลูกหลานนี่คือสิ่งที่ฉันโพสต์ในตอนแรก:
;; Define a face for the inactive highlight line.
(defface hl-line-inactive
'((t nil))
"Inactive variant of `hl-line'."
:group 'local)
(defun toggle-active-window-highlighting ()
"Update the `hl-line' face in any visible buffers to indicate which window is active."
(let ((dups))
(mapc
(lambda (frame)
(mapc
(lambda (window)
(with-current-buffer (window-buffer window)
(when hl-line-mode
(make-local-variable 'face-remapping-alist)
(let ((inactive (rassoc '(hl-line-inactive) face-remapping-alist)))
(if (eq window (selected-window))
(progn
(setq dups (get-buffer-window-list nil nil 'visible))
(setq face-remapping-alist (delq inactive face-remapping-alist)))
(unless (or inactive (memq window dups))
(add-to-list 'face-remapping-alist '(hl-line hl-line-inactive))))))))
(window-list frame)))
(visible-frame-list))))
(add-hook 'buffer-list-update-hook #'toggle-active-window-highlighting)