From: Karl Hasselström <kha@xxxxxxxxxxx> These are the same keys the git emacs mode uses. Signed-off-by: Karl Hasselström <kha@xxxxxxxxxxx> Signed-off-by: David Kågedal <davidk@xxxxxxxxxxxxxx> --- contrib/stgit.el | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/contrib/stgit.el b/contrib/stgit.el index 1bdc0a5..09dec8b 100644 --- a/contrib/stgit.el +++ b/contrib/stgit.el @@ -65,6 +65,8 @@ Argument DIR is the repository path." (unless stgit-mode-map (setq stgit-mode-map (make-keymap)) (suppress-keymap stgit-mode-map) + (define-key stgit-mode-map "?" 'stgit-help) + (define-key stgit-mode-map "h" 'stgit-help) (define-key stgit-mode-map "g" 'stgit-refresh) (define-key stgit-mode-map "r" 'stgit-rename) (define-key stgit-mode-map ">" 'stgit-push-next) @@ -139,3 +141,8 @@ Commands: (with-current-buffer standard-output (goto-char (point-min)) (diff-mode)))) + +(defun stgit-help () + "Display help for the StGit mode." + (interactive) + (describe-function 'stgit-mode)) - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html