mirror of
https://github.com/correl/dotfiles.git
synced 2024-12-18 11:06:17 +00:00
[emacs] Replace guide-key with which-key
Which-key provides the same functionality, with a nicer interface.
This commit is contained in:
parent
5376e9000d
commit
23d8729278
1 changed files with 4 additions and 6 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue