branch: externals/pulsar commit 65eb84a557725dbd677356b50510e94928f50498 Author: Protesilaos Stavrou <i...@protesilaos.com> Commit: Protesilaos Stavrou <i...@protesilaos.com>
Make the window state change pulse not consider the minibuffer Otherwise, we see a pulse each time the list of candidates is updated, even though the cursor has not changed position. --- pulsar.el | 1 + 1 file changed, 1 insertion(+) diff --git a/pulsar.el b/pulsar.el index bf0ccccf89..319379ebc0 100644 --- a/pulsar.el +++ b/pulsar.el @@ -557,6 +557,7 @@ Also check `pulsar-global-mode'." (defun pulsar--pulse-on-window-change (&rest _) "Run `pulsar-pulse-line' on window change." (when (and pulsar-pulse-on-window-change + (not (minibufferp)) (or pulsar-mode pulsar-global-mode)) (pulsar-pulse-line)))