contrib: pick: move M-RET to prefix-arg RET

In pick the user has the option of showing the selected message in a
subpane (the message pane) or in the full frame. This is customisable
using the variable notmuch-pick-show-out. At the moment RET is bound
to the default option and M-RET the other option. This is
messy and involves tricks to make sure the keymap is setup at the
right time.

This changes this to prefix-arg RET for the other option which
simplifies the code and makes things cleaner.
This commit is contained in:
Mark Walters 2013-09-23 20:52:58 +01:00 committed by David Bremner
parent cbbf53e4df
commit d1a5f5c659

View file

@ -50,17 +50,10 @@
"Showing message and thread structure." "Showing message and thread structure."
:group 'notmuch) :group 'notmuch)
;; This is ugly. We can't run setup-show-out until it has been defined
;; which needs the keymap to be defined. So we defer setting up to
;; notmuch-pick-init.
(defcustom notmuch-pick-show-out nil (defcustom notmuch-pick-show-out nil
"View selected messages in new window rather than split-pane." "View selected messages in new window rather than split-pane."
:type 'boolean :type 'boolean
:group 'notmuch-pick :group 'notmuch-pick)
:set (lambda (symbol value)
(set-default symbol value)
(when (fboundp 'notmuch-pick-setup-show-out)
(notmuch-pick-setup-show-out))))
(defcustom notmuch-pick-result-format (defcustom notmuch-pick-result-format
`(("date" . "%12s ") `(("date" . "%12s ")
@ -241,7 +234,6 @@ FUNC."
;; Override because we want to close message pane first. ;; Override because we want to close message pane first.
(define-key map "m" (notmuch-pick-close-message-pane-and #'notmuch-mua-new-mail)) (define-key map "m" (notmuch-pick-close-message-pane-and #'notmuch-mua-new-mail))
(define-key map [mouse-1] 'notmuch-pick-show-message)
;; these use notmuch-show functions directly ;; these use notmuch-show functions directly
(define-key map "|" 'notmuch-show-pipe-message) (define-key map "|" 'notmuch-show-pipe-message)
(define-key map "w" 'notmuch-show-save-attachments) (define-key map "w" 'notmuch-show-save-attachments)
@ -261,6 +253,8 @@ FUNC."
(define-key map "V" (notmuch-pick-close-message-pane-and #'notmuch-show-view-raw-message)) (define-key map "V" (notmuch-pick-close-message-pane-and #'notmuch-show-view-raw-message))
;; The main pick bindings ;; The main pick bindings
(define-key map (kbd "RET") 'notmuch-pick-show-message)
(define-key map [mouse-1] 'notmuch-pick-show-message)
(define-key map "x" 'notmuch-pick-quit) (define-key map "x" 'notmuch-pick-quit)
(define-key map "A" 'notmuch-pick-archive-thread) (define-key map "A" 'notmuch-pick-archive-thread)
(define-key map "a" 'notmuch-pick-archive-message-then-next) (define-key map "a" 'notmuch-pick-archive-message-then-next)
@ -280,21 +274,6 @@ FUNC."
map)) map))
(fset 'notmuch-pick-mode-map notmuch-pick-mode-map) (fset 'notmuch-pick-mode-map notmuch-pick-mode-map)
(defun notmuch-pick-setup-show-out ()
"Set up the keymap for showing a thread
This uses the value of the defcustom notmuch-pick-show-out to
decide whether to show a message in the message pane or in the
whole window."
(let ((map notmuch-pick-mode-map))
(if notmuch-pick-show-out
(progn
(define-key map (kbd "M-RET") 'notmuch-pick-show-message)
(define-key map (kbd "RET") 'notmuch-pick-show-message-out))
(progn
(define-key map (kbd "RET") 'notmuch-pick-show-message)
(define-key map (kbd "M-RET") 'notmuch-pick-show-message-out)))))
(defun notmuch-pick-get-message-properties () (defun notmuch-pick-get-message-properties ()
"Return the properties of the current message as a plist. "Return the properties of the current message as a plist.
@ -466,7 +445,7 @@ Does NOT change the database."
(ignore-errors (ignore-errors
(delete-window notmuch-pick-message-window))))) (delete-window notmuch-pick-message-window)))))
(defun notmuch-pick-show-message () (defun notmuch-pick-show-message-in ()
"Show the current message (in split-pane)." "Show the current message (in split-pane)."
(interactive) (interactive)
(let ((id (notmuch-pick-get-message-id)) (let ((id (notmuch-pick-get-message-id))
@ -503,6 +482,17 @@ Does NOT change the database."
(notmuch-pick-close-message-window) (notmuch-pick-close-message-window)
(notmuch-show id nil nil nil)))) (notmuch-show id nil nil nil))))
(defun notmuch-pick-show-message (arg)
"Show the current message.
Shows in split pane or whole window according to value of
`notmuch-pick-show-out'. A prefix argument reverses the choice."
(interactive "P")
(if (or (and notmuch-pick-show-out (not arg))
(and (not notmuch-pick-show-out) arg))
(notmuch-pick-show-message-out)
(notmuch-pick-show-message-in)))
(defun notmuch-pick-scroll-message-window () (defun notmuch-pick-scroll-message-window ()
"Scroll the message window (if it exists)" "Scroll the message window (if it exists)"
(interactive) (interactive)
@ -566,14 +556,14 @@ message will be \"unarchived\", i.e. the tag changes in
(interactive) (interactive)
(forward-line) (forward-line)
(when (window-live-p notmuch-pick-message-window) (when (window-live-p notmuch-pick-message-window)
(notmuch-pick-show-message))) (notmuch-pick-show-message-in)))
(defun notmuch-pick-prev-message () (defun notmuch-pick-prev-message ()
"Move to previous message." "Move to previous message."
(interactive) (interactive)
(forward-line -1) (forward-line -1)
(when (window-live-p notmuch-pick-message-window) (when (window-live-p notmuch-pick-message-window)
(notmuch-pick-show-message))) (notmuch-pick-show-message-in)))
(defun notmuch-pick-prev-matching-message () (defun notmuch-pick-prev-matching-message ()
"Move to previous matching message." "Move to previous matching message."
@ -582,7 +572,7 @@ message will be \"unarchived\", i.e. the tag changes in
(while (and (not (bobp)) (not (notmuch-pick-get-match))) (while (and (not (bobp)) (not (notmuch-pick-get-match)))
(forward-line -1)) (forward-line -1))
(when (window-live-p notmuch-pick-message-window) (when (window-live-p notmuch-pick-message-window)
(notmuch-pick-show-message))) (notmuch-pick-show-message-in)))
(defun notmuch-pick-next-matching-message () (defun notmuch-pick-next-matching-message ()
"Move to next matching message." "Move to next matching message."
@ -591,7 +581,7 @@ message will be \"unarchived\", i.e. the tag changes in
(while (and (not (eobp)) (not (notmuch-pick-get-match))) (while (and (not (eobp)) (not (notmuch-pick-get-match)))
(forward-line)) (forward-line))
(when (window-live-p notmuch-pick-message-window) (when (window-live-p notmuch-pick-message-window)
(notmuch-pick-show-message))) (notmuch-pick-show-message-in)))
(defun notmuch-pick-refresh-view () (defun notmuch-pick-refresh-view ()
"Refresh view." "Refresh view."
@ -763,7 +753,7 @@ unchanged ADDRESS if parsing fails."
(goto-char (point-max)) (goto-char (point-max))
(forward-line -1) (forward-line -1)
(when notmuch-pick-open-target (when notmuch-pick-open-target
(notmuch-pick-show-message))))) (notmuch-pick-show-message-in)))))
(defun notmuch-pick-insert-tree (tree depth tree-status first last) (defun notmuch-pick-insert-tree (tree depth tree-status first last)
"Insert the message tree TREE at depth DEPTH in the current thread. "Insert the message tree TREE at depth DEPTH in the current thread.
@ -952,7 +942,6 @@ The arguments are:
(define-key notmuch-search-mode-map "Z" 'notmuch-pick-from-search-current-query) (define-key notmuch-search-mode-map "Z" 'notmuch-pick-from-search-current-query)
(define-key notmuch-search-mode-map (kbd "M-RET") 'notmuch-pick-from-search-thread) (define-key notmuch-search-mode-map (kbd "M-RET") 'notmuch-pick-from-search-thread)
(define-key notmuch-show-mode-map "Z" 'notmuch-pick-from-show-current-query) (define-key notmuch-show-mode-map "Z" 'notmuch-pick-from-show-current-query)
(notmuch-pick-setup-show-out)
(message "Initialised notmuch-pick") (message "Initialised notmuch-pick")
(provide 'notmuch-pick) (provide 'notmuch-pick)