[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
:bind ("C-x o" . ace-window))
#+END_SRC
** Guide Key
** Which Key
#+name: packages
#+BEGIN_SRC emacs-lisp
(use-package guide-key
(use-package which-key
:ensure t
:diminish guide-key-mode
:config (progn
(setq guide-key/guide-key-sequence t)
(guide-key-mode 1)))
:diminish which-key-mode
:config (which-key-mode t))
#+END_SRC
** Expand Region
#+name: packages