branch: elpa/isl
commit dca64e37bd7fb207520dd32c1ca18893fc0a93ad
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>
Disable cursor-in-non-selected-windows
Note that this may leave chars highlighted with ligature-mode enabled
depending on how it's configured.
---
isearch-light.el | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/isearch-light.el b/isearch-light.el
index 96477e52e44..8de282ea01d 100644
--- a/isearch-light.el
+++ b/isearch-light.el
@@ -702,7 +702,9 @@ appended at end."
isl-case-fold-search (default-value 'isl-case-fold-search)
isl-search-function (default-value 'isl-search-function)
buffer-invisibility-spec isl--buffer-invisibility-spec
- isl--hidding nil)
+ isl--hidding nil
+ cursor-in-non-selected-windows
+ (default-value 'cursor-in-non-selected-windows))
(remove-overlays nil nil 'isl-invisible t)
(if isl--quit
(setq isl--quit nil)
@@ -727,7 +729,8 @@ appended at end."
isl-pattern ""
isl--direction 'forward
isl-current-buffer (current-buffer)
- isl--buffer-invisibility-spec buffer-invisibility-spec)
+ isl--buffer-invisibility-spec buffer-invisibility-spec
+ cursor-in-non-selected-windows nil)
(unwind-protect
(condition-case-unless-debug nil
(isl-read-from-minibuffer "Search: ")