From 572de25f93752d806efa11bb80a641afd4c06e40 Mon Sep 17 00:00:00 2001 From: 0x28 <12886563+0x28@users.noreply.github.com> Date: Fri, 15 Apr 2022 10:06:19 +0200 Subject: [PATCH] Add bindings for the new help-mode commands --- modes/help/evil-collection-help.el | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/modes/help/evil-collection-help.el b/modes/help/evil-collection-help.el index d84e17f..98454e5 100644 --- a/modes/help/evil-collection-help.el +++ b/modes/help/evil-collection-help.el @@ -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