From 8ce339094ff84d4bbca93921aed66d3899e56192 Mon Sep 17 00:00:00 2001 From: jaaasonSun Date: Sat, 4 Feb 2023 12:38:23 +0800 Subject: [PATCH] * eldoc-box.el (eldoc-box--display): Disable header-line. --- eldoc-box.el | 1 + 1 file changed, 1 insertion(+) diff --git a/eldoc-box.el b/eldoc-box.el index 1a7ec4b..d255ace 100644 --- a/eldoc-box.el +++ b/eldoc-box.el @@ -219,6 +219,7 @@ STR has to be a proper documentation, not empty string, not nil, etc." (let ((doc-buffer (get-buffer-create eldoc-box--buffer))) (with-current-buffer doc-buffer (setq mode-line-format nil) + (setq header-line-format nil) (when (bound-and-true-p global-tab-line-mode) (setq tab-line-format nil)) ;; without this, clicking childframe will make doc buffer the current buffer