* emacs/notmuch-show.el (notmuch-show-imenu-prev-index-position-function): ---
This is a completely new and much simpler implementation. Idea is from Pengji Zhang <[email protected]>. Message-ID: <[email protected]> --- emacs/notmuch-show.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el index 14e3c698..921c0ef1 100644 --- a/emacs/notmuch-show.el +++ b/emacs/notmuch-show.el @@ -2686,7 +2686,9 @@ (defun notmuch-show-imenu-prev-index-position-function () `imenu-prev-index-position-function'." (if (bobp) nil - (notmuch-show-previous-message) + (if (eobp) + (notmuch-show-move-to-message-top) + (notmuch-show-goto-message-previous)) t)) (defun notmuch-show-imenu-extract-index-name-function () -- 2.47.0 _______________________________________________ notmuch mailing list -- [email protected] To unsubscribe send an email to [email protected]
