about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2021-09-01 14:59:57 +0100
committerDavid Morgan <djm_uk@protonmail.com>2021-09-01 14:59:57 +0100
commit46b8a3c0f84b796c94e323dbb5a1d8e292c4f662 (patch)
treed82ec4a03872a71df3d13034642af229571d4392
parent8b03b38ba6036ec069e99c46539edb9e14c4e2c9 (diff)
downloaddotfiles-46b8a3c0f84b796c94e323dbb5a1d8e292c4f662.tar.gz
Change isearch-yank-on-move to shift
-rw-r--r--.emacs.d/lisp/init-search.el4
1 files changed, 1 insertions, 3 deletions
diff --git a/.emacs.d/lisp/init-search.el b/.emacs.d/lisp/init-search.el
index c9a8305..be4de3c 100644
--- a/.emacs.d/lisp/init-search.el
+++ b/.emacs.d/lisp/init-search.el
@@ -8,9 +8,7 @@
   (search-whitespace-regexp ".*\\b")
   (isearch-lax-whitespace t)
   (isearch-allow-scroll t)
-  ;; TODO
-  ;; (isearch-yank-on-move 'shift)
-  (isearch-yank-on-move t)
+  (isearch-yank-on-move 'shift)
   :bind-keymap ("C-c s" . search-map) ;; M-s clashes with paredit/smartparens bindings
   :bind
   ("C-*" . isearch-forward-symbol-at-point)