aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-22 11:24:11 -0400
committerMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-22 11:24:11 -0400
commit7368f4b04f1754f907e524db7ce139af4a2c5a11 (patch)
treefc3b4c6c9add00dd1d7faa1321245b028ee579ce
parentFix `projectile-mode` hook (diff)
downloadmmosmacs-7368f4b04f1754f907e524db7ce139af4a2c5a11.tar.gz
mmosmacs-7368f4b04f1754f907e524db7ce139af4a2c5a11.tar.bz2
mmosmacs-7368f4b04f1754f907e524db7ce139af4a2c5a11.zip
Limit `which-key` height to 5 lines to match `vertico`
-rw-r--r--init.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/init.el b/init.el
index a13b58b..72e8892 100644
--- a/init.el
+++ b/init.el
@@ -897,7 +897,8 @@
897 :straight t 897 :straight t
898 :init (which-key-mode) 898 :init (which-key-mode)
899 :config 899 :config
900 (setq which-key-idle-delay 1.5)) 900 (setq which-key-idle-delay 1.5
901 which-key-side-window-max-height 5))
901 902
902 903
903;; --------------------------------- 904;; ---------------------------------