aboutsummaryrefslogtreecommitdiffhomepage
path: root/emacs
diff options
context:
space:
mode:
authorGravatar Jani Nikula <jani@nikula.org>2012-01-31 19:29:06 +0200
committerGravatar David Bremner <bremner@debian.org>2012-02-08 13:22:00 -0400
commitd2ef4edc545ea02764aa005bc3e56cdb4310ce09 (patch)
tree0a0bb27cc66b0d5e410fded864e905ef7a7c5c08 /emacs
parent61fa5c0bb88fd3cd4a52d5a5b93a12bed58c063e (diff)
emacs: make show view a/A/x/X key bindings more consistent
Modify the show view key bindings as follows to make them more consistent: 'a' = Archive current message, then move to next message, or show next thread from search if at the last message in thread. 'A' = Archive each message in thread, then show next thread from search. 'x' = Archive current message, then move to next message, or exit back to search results if at the last message in thread. 'X' = Archive each message in thread, then exit back to search results. The changes make the key bindings more consistent in two ways: 1) 'a'/'A' both advance to the next thread like 'a' used to. 2) 'x' operates on messages and 'X' on threads like 'a'/'A'.
Diffstat (limited to 'emacs')
-rw-r--r--emacs/notmuch-show.el28
1 files changed, 22 insertions, 6 deletions
diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el
index faa9f9b4..24fde052 100644
--- a/emacs/notmuch-show.el
+++ b/emacs/notmuch-show.el
@@ -1087,9 +1087,10 @@ thread id. If a prefix is given, crypto processing is toggled."
(define-key map "*" 'notmuch-show-tag-all)
(define-key map "-" 'notmuch-show-remove-tag)
(define-key map "+" 'notmuch-show-add-tag)
- (define-key map "x" 'notmuch-show-archive-thread-then-exit)
- (define-key map "a" 'notmuch-show-archive-message-then-next)
+ (define-key map "X" 'notmuch-show-archive-thread-then-exit)
+ (define-key map "x" 'notmuch-show-archive-message-then-next-or-exit)
(define-key map "A" 'notmuch-show-archive-thread-then-next)
+ (define-key map "a" 'notmuch-show-archive-message-then-next-or-next-thread)
(define-key map "N" 'notmuch-show-next-message)
(define-key map "P" 'notmuch-show-previous-message)
(define-key map "n" 'notmuch-show-next-open-message)
@@ -1452,7 +1453,8 @@ thread, navigate to the next thread in the parent search buffer."
If a prefix argument is given and this is the last open message
in the thread, navigate to the next thread in the parent search
-buffer."
+buffer. Return t if there was a next open message in the thread
+to show, nil otherwise."
(interactive "P")
(let (r)
(while (and (setq r (notmuch-show-goto-message-next))
@@ -1463,7 +1465,8 @@ buffer."
(notmuch-show-message-adjust))
(if pop-at-end
(notmuch-show-next-thread)
- (goto-char (point-max))))))
+ (goto-char (point-max))))
+ r))
(defun notmuch-show-previous-open-message ()
"Show the previous open message."
@@ -1671,12 +1674,25 @@ removed)."
(let ((op (if unarchive "+" "-")))
(notmuch-show-tag-message (concat op "inbox"))))
-(defun notmuch-show-archive-message-then-next ()
- "Archive the current message, then show the next open message in the current thread."
+(defun notmuch-show-archive-message-then-next-or-exit ()
+ "Archive the current message, then show the next open message in the current thread.
+
+If at the last open message in the current thread, then exit back
+to search results."
(interactive)
(notmuch-show-archive-message)
(notmuch-show-next-open-message t))
+(defun notmuch-show-archive-message-then-next-or-next-thread ()
+ "Archive the current message, then show the next open message in the current thread.
+
+If at the last open message in the current thread, then show next
+thread from search."
+ (interactive)
+ (notmuch-show-archive-message)
+ (unless (notmuch-show-next-open-message)
+ (notmuch-show-next-thread t)))
+
(defun notmuch-show-stash-cc ()
"Copy CC field of current message to kill-ring."
(interactive)