branch: externals/which-key commit 5fb30301cb3b4fca5a0e1ce8ec1ef59290b79199 Author: Frank Terbeck <f...@bewatermyfriend.org> Commit: Justin Burkett <jus...@burkett.cc>
Unset header-line-format format in " *which-key*" buffer Similarly to mode-line-format, header-line-format just takes up space and currently also breaks window size calculations for the buffer. This sets it to nil in order to suppress its display. Signed-off-by: Frank Terbeck <f...@bewatermyfriend.org> --- which-key.el | 1 + 1 file changed, 1 insertion(+) diff --git a/which-key.el b/which-key.el index 55767a9..8b4c60f 100644 --- a/which-key.el +++ b/which-key.el @@ -840,6 +840,7 @@ problems at github. If DISABLE is non-nil disable support." (setq-local cursor-type nil) (setq-local cursor-in-non-selected-windows nil) (setq-local mode-line-format nil) + (setq-local header-line-format nil) (setq-local word-wrap nil) (setq-local show-trailing-whitespace nil) (run-hooks 'which-key-init-buffer-hook))))