diff options
Diffstat (limited to '.emacs.d/lisp/init-navigation.el')
-rw-r--r-- | .emacs.d/lisp/init-navigation.el | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/.emacs.d/lisp/init-navigation.el b/.emacs.d/lisp/init-navigation.el index d925545..e483637 100644 --- a/.emacs.d/lisp/init-navigation.el +++ b/.emacs.d/lisp/init-navigation.el @@ -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) |