From be08f9794e22b3fa76b29b548bc7bee6fe9a254f Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 28 Oct 2019 22:38:47 -0400 Subject: [PATCH] Fix nav-flash being suppressed By a variable that will (almost) always be non-til. --- modules/ui/nav-flash/autoload.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/ui/nav-flash/autoload.el b/modules/ui/nav-flash/autoload.el index 72e7b501f..58fd444a1 100644 --- a/modules/ui/nav-flash/autoload.el +++ b/modules/ui/nav-flash/autoload.el @@ -16,7 +16,8 @@ jumping to another part of the file)." (defun +nav-flash-blink-cursor-maybe (&rest _) "Like `+nav-flash-blink-cursor', but no-ops if in special-mode or term-mode, or triggered from one of `+nav-flash-exclude-commands'." - (unless (or (bound-and-true-p so-long-enabled) + (unless (or (bound-and-true-p so-long-minor-mode) + (eq major-mode 'so-long-mode) (derived-mode-p 'special-mode 'term-mode) (memq this-command +nav-flash-exclude-commands) (and (equal (point-marker) (car +nav-flash--last-point))