aboutsummaryrefslogtreecommitdiff
path: root/emacs
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2024-08-10 14:36:24 -0300
committerDavid Bremner <david@tethera.net>2025-03-13 07:56:05 -0300
commit41d5e5956e4a01fda4bfe07a2897939b04606c51 (patch)
treebd0e8b692327f588944e062692715d9bb3bfe703 /emacs
parent43e90e7caa9cbb10097ed9526052fe82cd30b9f0 (diff)
emacs/tree: call notmuch-hl-line-mode from tree-sentinel
There is a a perceptible gap between when the tree shows up and when the hl-line is visible, but this is better than the previous state where the line did not show up at all until the user moved the cursor.
Diffstat (limited to 'emacs')
-rw-r--r--emacs/notmuch-tree.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/emacs/notmuch-tree.el b/emacs/notmuch-tree.el
index 24a9970f..481b0b34 100644
--- a/emacs/notmuch-tree.el
+++ b/emacs/notmuch-tree.el
@@ -1122,6 +1122,8 @@ object, and with the tree results buffer as the current buffer.")
(unless (= exit-status 0)
(insert (format " (process returned %d)" exit-status)))
(insert "\n"))))
+ (when (and notmuch-hl-line (= exit-status 0))
+ (notmuch-hl-line-mode))
(run-hook-with-args 'notmuch-tree-process-exit-functions proc))))))
(defun notmuch-tree-process-filter (proc string)