From 229c9f766338e08215dcde9e86bbf2f8ee34d505 Mon Sep 17 00:00:00 2001 From: luxick Date: Mon, 11 Nov 2019 12:08:18 +0100 Subject: [PATCH] Add which-key package. --- setup-emacs.org | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/setup-emacs.org b/setup-emacs.org index 7327b69..d0e4489 100644 --- a/setup-emacs.org +++ b/setup-emacs.org @@ -660,6 +660,15 @@ This is my configuration for the emacs editor. (use-package htmlize) #+END_SRC +** which-key + This package provides a minor mode that shows a list of possible keys in the minibuffer. + After a second of inactivity the minibuffer will expand and show possible completions for the started command. + #+BEGIN_SRC emacs-lisp + (use-package which-key + :config + (which-key-mode t)) + #+END_SRC + * Set Variables ** General Emacs Options #+BEGIN_SRC emacs-lisp