mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
notmuch.el: Add final '*' to generated buffer names.
Just looks a little neater that way.
This commit is contained in:
parent
1c75d622c9
commit
acdc9988a2
1 changed files with 8 additions and 2 deletions
10
notmuch.el
10
notmuch.el
|
@ -51,7 +51,7 @@
|
|||
(defun notmuch-show (thread-id)
|
||||
"Run \"notmuch show\" with the given thread ID and display results."
|
||||
(interactive "sNotmuch show: ")
|
||||
(let ((buffer (get-buffer-create (concat "*notmuch-show-" thread-id))))
|
||||
(let ((buffer (get-buffer-create (concat "*notmuch-show-" thread-id "*"))))
|
||||
(switch-to-buffer buffer)
|
||||
(notmuch-show-mode)
|
||||
(let ((proc (get-buffer-process (current-buffer)))
|
||||
|
@ -96,10 +96,16 @@
|
|||
(interactive)
|
||||
(notmuch-show (notmuch-search-find-thread-id)))
|
||||
|
||||
(defun notmuch-search-archive-thread ()
|
||||
(interactive)
|
||||
(if (eq (call-process "notmuch" nil (get-buffer-create "*Messages*") nil "tag" "-inbox" (concat "thread:" (notmuch-search-find-thread-id))) 0)
|
||||
(let ((inhibit-read-only t))
|
||||
(kill-whole-line))))
|
||||
|
||||
(defun notmuch-search (query)
|
||||
"Run \"notmuch search\" with the given query string and display results."
|
||||
(interactive "sNotmuch search: ")
|
||||
(let ((buffer (get-buffer-create (concat "*notmuch-search-" query))))
|
||||
(let ((buffer (get-buffer-create (concat "*notmuch-search-" query "*"))))
|
||||
(switch-to-buffer buffer)
|
||||
(notmuch-search-mode)
|
||||
(let ((proc (get-buffer-process (current-buffer)))
|
||||
|
|
Loading…
Reference in a new issue