mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
notmuch.el: Add a binding ('o') and command to toggle current search order.
This ended up being a bit easier than I thought. Just flip the controlling variable and then run `notmuch-search-refresh-view'.
This commit is contained in:
parent
ed2643333c
commit
8561c7463a
1 changed files with 19 additions and 0 deletions
19
notmuch.el
19
notmuch.el
|
@ -615,6 +615,7 @@ thread from that buffer can be show when done with this one)."
|
||||||
(define-key map "b" 'notmuch-search-scroll-down)
|
(define-key map "b" 'notmuch-search-scroll-down)
|
||||||
(define-key map "f" 'notmuch-search-filter)
|
(define-key map "f" 'notmuch-search-filter)
|
||||||
(define-key map "n" 'next-line)
|
(define-key map "n" 'next-line)
|
||||||
|
(define-key map "o" 'notmuch-search-toggle-order)
|
||||||
(define-key map "p" 'previous-line)
|
(define-key map "p" 'previous-line)
|
||||||
(define-key map "q" 'kill-this-buffer)
|
(define-key map "q" 'kill-this-buffer)
|
||||||
(define-key map "s" 'notmuch-search)
|
(define-key map "s" 'notmuch-search)
|
||||||
|
@ -820,6 +821,24 @@ same relative position within the new buffer."
|
||||||
(beginning-of-line)
|
(beginning-of-line)
|
||||||
(goto-char here))))
|
(goto-char here))))
|
||||||
|
|
||||||
|
(defun notmuch-search-toggle-order ()
|
||||||
|
"Toggle the current search order.
|
||||||
|
|
||||||
|
By default, the \"inbox\" view created by `notmuch' is displayed
|
||||||
|
in chronological order (oldest thread at the beginning of the
|
||||||
|
buffer), while any global searches created by `notmuch-search'
|
||||||
|
are displayed in reverse-chronological order (newest thread at
|
||||||
|
the beginning of the buffer).
|
||||||
|
|
||||||
|
This command toggles the sort order for the current search.
|
||||||
|
|
||||||
|
Note that any fitlered searches created by
|
||||||
|
`notmuch-search-filter' retain the search order of the parent
|
||||||
|
search."
|
||||||
|
(interactive)
|
||||||
|
(set 'notmuch-search-oldest-first (not notmuch-search-oldest-first))
|
||||||
|
(notmuch-search-refresh-view))
|
||||||
|
|
||||||
(defun notmuch-search-filter (query)
|
(defun notmuch-search-filter (query)
|
||||||
"Filter the current search results based on an additional query string.
|
"Filter the current search results based on an additional query string.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue