[emacs] Replace guide-key with which-key

Which-key provides the same functionality, with a nicer interface.
This commit is contained in:
Correl Roush 2015-08-24 23:19:10 -04:00
parent 5376e9000d
commit 23d8729278

View file

@ -91,15 +91,13 @@ Helm projectile integration
:ensure t :ensure t
:bind ("C-x o" . ace-window)) :bind ("C-x o" . ace-window))
#+END_SRC #+END_SRC
** Guide Key ** Which Key
#+name: packages #+name: packages
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(use-package guide-key (use-package which-key
:ensure t :ensure t
:diminish guide-key-mode :diminish which-key-mode
:config (progn :config (which-key-mode t))
(setq guide-key/guide-key-sequence t)
(guide-key-mode 1)))
#+END_SRC #+END_SRC
** Expand Region ** Expand Region
#+name: packages #+name: packages