all repos — nixfiles @ 5b5f0d195a04289301848a8ff454185b80b5948b

System and user configuration, managed by nix and home-manager

Emacs: Remove isearch configuration
Alan Pearce alan.pearce@spotcap.com
Thu, 17 Mar 2016 14:25:30 +0100
commit

5b5f0d195a04289301848a8ff454185b80b5948b

parent

4e89ea1bbfdd8d9d0d4c55e8439c20e0d19d4415

1 files changed, 0 insertions(+), 20 deletions(-)

jump to
M tag-emacs/emacs.d/init.orgtag-emacs/emacs.d/init.org
@@ -2142,26 +2142,6 @@ #+BEGIN_SRC emacs-lisp   (delete-selection-mode t)
 #+END_SRC
 
-Isearch has a keybind for searching for the currently-selected word.
- I often want to use a symbol though, so this comes in handy.  [[http://blog.jorgenschaefer.de/2012/11/emacs-search-for-symbol-at-point.html][Source]]
-
-#+BEGIN_SRC emacs-lisp
-(defun fc/isearch-yank-symbol ()
-  "Yank the symbol at point into the isearch minibuffer.
-
-C-w does something similar in isearch, but it only looks for
-the rest of the word. I want to look for the whole string. And
-symbol, not word, as I need this for programming the most."
-  (interactive)
-  (isearch-yank-string
-   (save-excursion
-     (when (and (not isearch-forward)
-                isearch-other-end)
-       (goto-char isearch-other-end))
-     (thing-at-point 'symbol))))
-(bind-key "C-d" #'fc/isearch-yank-symbol isearch-mode-map)
-#+END_SRC
-
 Sub-word movement is really nice for camel- and Pascal-case
 
 #+BEGIN_SRC emacs-lisp