Add bindings for the new help-mode commands

This commit is contained in:
0x28 2022-04-15 10:06:19 +02:00 committed by James
parent 6f99be20a3
commit 572de25f93
1 changed files with 7 additions and 1 deletions

View File

@ -68,7 +68,13 @@
"gr" 'revert-buffer
"<" 'help-go-back
">" 'help-go-forward
"r" 'help-follow))
"r" 'help-follow)
(when (>= emacs-major-version 28)
(evil-collection-define-key 'normal 'help-mode-map
"s" 'help-view-source
"i" 'help-goto-info
"c" 'help-customize)))
(provide 'evil-collection-help)
;;; evil-collection-help.el ends here