Add jump to specific manual keybinding (SPC h j)
This keybinding could also go under `SPC h M`, but that is currently taken by `helm-switch-major-mode` (which seems a quite redundant command to me, as you can switch major-modes directly using `M-x`/`SPC SPC`).
This commit is contained in:
parent
31222468e6
commit
5a9b813c9e
2 changed files with 7 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
|||
* Table of Contents :TOC_5_gh:noexport:
|
||||
- [[#description][Description]]
|
||||
- [[#features][Features:]]
|
||||
- [[#key-bindings][Key bindings]]
|
||||
|
||||
* Description
|
||||
This layer adds general navigation functions to all supported layers.
|
||||
|
@ -21,3 +22,8 @@ This layer adds general navigation functions to all supported layers.
|
|||
- Support for =paradox= a modern emacs package manager
|
||||
- Shortcuts for restarting =emacs=
|
||||
- Shortcuts for easily switching between windows
|
||||
|
||||
* Key bindings
|
||||
| Key Binding | Description |
|
||||
|-------------+----------------|
|
||||
| ~SPC h j~ | jump to manual |
|
||||
|
|
|
@ -323,6 +323,7 @@
|
|||
:defer t
|
||||
:init
|
||||
(progn
|
||||
(spacemacs/set-leader-keys "hj" 'info-display-manual)
|
||||
(setq Info-fontify-angle-bracketed-flag nil)
|
||||
(add-hook 'Info-mode-hook (lambda () (require 'info+))))))
|
||||
|
||||
|
|
Reference in a new issue