diff options
Diffstat (limited to 'lisp/isearch.el')
-rw-r--r-- | lisp/isearch.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el index 6bb23916da3..3ffe6e8a656 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el @@ -1804,9 +1804,13 @@ Scroll-bar or mode-line events are processed appropriately." ;; Commands which change the window layout (put 'delete-other-windows 'isearch-scroll t) (put 'balance-windows 'isearch-scroll t) +(put 'split-window-right 'isearch-scroll t) +(put 'split-window-below 'isearch-scroll t) +(put 'enlarge-window 'isearch-scroll t) + +;; Aliases for split-window-* (put 'split-window-vertically 'isearch-scroll t) (put 'split-window-horizontally 'isearch-scroll t) -(put 'enlarge-window 'isearch-scroll t) ;; Universal argument commands (put 'universal-argument 'isearch-scroll t) |