From 79a35d3c30cd7c0e1d74537c6fc5ccfbade0c066 Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Mon, 12 Feb 2018 16:02:10 -0500 Subject: [PATCH] [emacs] Go back to swiper-helm, as helm-swoop is broken --- .emacs.d/emacs.org | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/.emacs.d/emacs.org b/.emacs.d/emacs.org index a3dc249..916228c 100644 --- a/.emacs.d/emacs.org +++ b/.emacs.d/emacs.org @@ -119,9 +119,9 @@ Helm search plugin for [[Ag%20(The%20Silver%20Searcher)][Ag (The Silver Searcher :init (eval-after-load 'flyspell '(define-key flyspell-mode-map (kbd "C-;") 'helm-flyspell-correct))) #+end_src -*** helm-swoop +*** swiper-helm -Replace isearch-forward with helm-swoop for a nicer experience. +Replace isearch-forward with swiper-helm for a nicer experience. #+BEGIN_NOTES Quite usefully, using prefix arguments expands the lines of context @@ -130,19 +130,10 @@ shown around the search results. #+name: packages #+BEGIN_SRC emacs-lisp - (use-package helm-swoop + (use-package swiper-helm :ensure t - :commands (helm-swoop) - :bind (("C-s" . helm-swoop)) - :config - ;; Defaults to (lambda () (thing-at-point 'symbol)). - ;; Setting it to return nil, as I find it tends to be more annoying than useful. - (setq helm-swoop-pre-input-function (lambda () nil)) - ;; Enable syntax highlighting. It makes it easier for my eyes to - ;; parse the results, and doesn't seem to slow things down - ;; measurably. - (setq helm-swoop-speed-or-color t) - ) + :commands (swiper-helm) + :bind (("C-s" . swiper-helm))) #+END_SRC ** Undo-Tree