mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
Make '?" bring up a list of bindings.
Just using describe-mode for now, (though something more specialized would be better).
This commit is contained in:
parent
b032cf98f5
commit
0656fb518d
1 changed files with 2 additions and 0 deletions
|
@ -53,6 +53,7 @@
|
|||
(define-key map (kbd "DEL") 'notmuch-show-rewind)
|
||||
(define-key map " " 'notmuch-show-advance-marking-read-and-archiving)
|
||||
(define-key map "|" 'notmuch-show-pipe-message)
|
||||
(define-key map "?" 'describe-mode)
|
||||
map)
|
||||
"Keymap for \"notmuch show\" buffers.")
|
||||
(fset 'notmuch-show-mode-map notmuch-show-mode-map)
|
||||
|
@ -698,6 +699,7 @@ thread from that buffer can be show when done with this one)."
|
|||
(define-key map "\M->" 'notmuch-search-goto-last-thread)
|
||||
(define-key map " " 'notmuch-search-scroll-up)
|
||||
(define-key map (kbd "<DEL>") 'notmuch-search-scroll-down)
|
||||
(define-key map "?" 'describe-mode)
|
||||
map)
|
||||
"Keymap for \"notmuch search\" buffers.")
|
||||
(fset 'notmuch-search-mode-map notmuch-search-mode-map)
|
||||
|
|
Loading…
Reference in a new issue