Move isearch config to a separate file

This commit is contained in:
David Morgan 2021-08-23 15:42:31 +01:00
parent e5cb95490b
commit bc63e2e1a0
3 changed files with 29 additions and 24 deletions

View File

@ -21,6 +21,7 @@
(require 'init-compile)
(require 'init-editor)
(require 'init-crux)
(require 'init-search)
(require 'init-navigation)
(require 'init-windows)
(require 'init-projectile)

View File

@ -2,30 +2,6 @@
;;; Commentary:
;;; Code:
;; (use-package ctrlf
;; :init
;; (ctrlf-mode +1)
;; :config
;; (add-to-list 'ctrlf-minibuffer-bindings '("C-M-g" . ctrlf-cancel))
;; (add-to-list 'ctrlf-minibuffer-bindings '("C-o o" . ctrlf-occur))
;; (add-to-list 'ctrlf-minibuffer-bindings '("C-o C-o" . ctrlf-occur))
;; :custom
;; (ctrlf-default-search-style 'fuzzy-regexp)
;; (ctrlf-alternate-search-style 'literal)
;; :bind
;; ("C-S-s" . ctrlf-forward-default)
;; ("C-M-g" . ctrlf-cancel) ;; always bind this in case we have left the minibuffer
;; ("C-*" . ctrlf-forward-symbol-at-point))
(use-package isearch
:ensure nil
:custom
(search-whitespace-regexp ".*\\b")
(isearch-lax-whitespace t)
:bind-keymap ("C-c s" . search-map) ;; M-s clashes with paredit/smartparens bindings
:bind
("C-*" . isearch-forward-symbol-at-point))
(use-package smartscan
:config
(global-smartscan-mode t)

View File

@ -0,0 +1,28 @@
;;; init-search.el --- Search Configuration File -*- lexical-binding: t -*-
;;; Commentary:
;;; Code:
(use-package isearch
:ensure nil
:custom
(search-whitespace-regexp ".*\\b")
(isearch-lax-whitespace t)
(isearch-allow-scroll t)
;; TODO
;; (isearch-yank-on-move 'shift)
(isearch-yank-on-move t)
:bind-keymap ("C-c s" . search-map) ;; M-s clashes with paredit/smartparens bindings
:bind
("C-*" . isearch-forward-symbol-at-point)
(:map search-map
("M-s M-<" . isearch-beginning-of-buffer)
("M-s M->" . isearch-end-of-buffer)
("C-c s M-<" . isearch-beginning-of-buffer)
("C-c s M->" . isearch-end-of-buffer)))
(use-package isearch-dabbrev
:after isearch
:bind (:map isearch-mode-map ("M-/" . isearch-dabbrev-expand)))
(provide 'init-search)
;;; init-search.el ends here