Distinguish between describe-symbol and the Info for symbol
This commit is contained in:
parent
13b930e6ee
commit
324ccce619
1 changed files with 7 additions and 6 deletions
|
@ -552,11 +552,11 @@ The [[https://github.com/edkolev/evil-lion][evil-lion]] package is a wrapper aro
|
||||||
(use-package evil-lion
|
(use-package evil-lion
|
||||||
:after evil
|
:after evil
|
||||||
:bind (:map evil-normal-state-map
|
:bind (:map evil-normal-state-map
|
||||||
("g a" . evil-lion-left)
|
("g a" . evil-lion-left)
|
||||||
("g A" . evil-lion-right)
|
("g A" . evil-lion-right)
|
||||||
:map evil-visual-state-map
|
:map evil-visual-state-map
|
||||||
("g a" . evil-lion-left)
|
("g a" . evil-lion-left)
|
||||||
("g A" . evil-lion-right)))
|
("g A" . evil-lion-right)))
|
||||||
#+end_src
|
#+end_src
|
||||||
Lion sounds like /align/ … get it?
|
Lion sounds like /align/ … get it?
|
||||||
|
|
||||||
|
@ -1027,8 +1027,9 @@ Since I tweaked the help menu, I craft my own menu:
|
||||||
"h k" '("key binding" . describe-key)
|
"h k" '("key binding" . describe-key)
|
||||||
"h K" '("key map" . describe-keymap)
|
"h K" '("key map" . describe-keymap)
|
||||||
"h m" '("mode" . describe-mode)
|
"h m" '("mode" . describe-mode)
|
||||||
|
"h o" '("symbol" . describe-symbol)
|
||||||
"h p" '("package" . describe-package)
|
"h p" '("package" . describe-package)
|
||||||
"h s" '("symbol" . info-lookup-symbol)
|
"h s" '("info symbol" . info-lookup-symbol)
|
||||||
"h v" '("variable" . describe-variable)
|
"h v" '("variable" . describe-variable)
|
||||||
"h i" '("info" . info)
|
"h i" '("info" . info)
|
||||||
"h I" '("info manual" . info-display-manual)
|
"h I" '("info manual" . info-display-manual)
|
||||||
|
|
Loading…
Reference in a new issue