summaryrefslogtreecommitdiff
path: root/lisp/follow.el
diff options
context:
space:
mode:
authorJuri Linkov <juri@linkov.net>2017-02-22 02:10:36 +0200
committerJuri Linkov <juri@linkov.net>2017-02-22 02:10:36 +0200
commitc5e66afa88d6ff8ad5c42318d85188ed477e7db2 (patch)
tree86be5835f6ff85d91243eb8a29d6c2bf39438688 /lisp/follow.el
parent17af43ca76692c7e889c91d3fa9e6690349f0d57 (diff)
downloademacs-c5e66afa88d6ff8ad5c42318d85188ed477e7db2.tar.gz
emacs-c5e66afa88d6ff8ad5c42318d85188ed477e7db2.tar.bz2
emacs-c5e66afa88d6ff8ad5c42318d85188ed477e7db2.zip
* lisp/isearch.el (isearch-lazy-highlight): New choice ‘all-windows’.
(isearch-lazy-highlight-update): Check it to decide whether to apply overlays only on the selected window. * lisp/follow.el (follow-mode): Set isearch-lazy-highlight to ‘all-windows’. (Bug#17453, bug#21092)
Diffstat (limited to 'lisp/follow.el')
-rw-r--r--lisp/follow.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/follow.el b/lisp/follow.el
index 3ad4f108902..db3b2821a56 100644
--- a/lisp/follow.el
+++ b/lisp/follow.el
@@ -427,6 +427,9 @@ Keys specific to Follow mode:
(add-hook 'replace-update-post-hook 'follow-post-command-hook nil t)
(add-hook 'ispell-update-post-hook 'follow-post-command-hook nil t)
+ (when isearch-lazy-highlight
+ (setq-local isearch-lazy-highlight 'all-windows))
+
(setq window-group-start-function 'follow-window-start)
(setq window-group-end-function 'follow-window-end)
(setq set-window-group-start-function 'follow-set-window-start)