Move wgrep config from core-editor to completion/{ivy,helm}

This commit is contained in:
Henrik Lissner 2018-01-14 02:04:30 -05:00
parent 1f454b56a4
commit 5ee50c6b53
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
6 changed files with 11 additions and 5 deletions

View file

@ -226,9 +226,5 @@ extension, try to guess one."
(def-package! smart-forward (def-package! smart-forward
:commands (smart-up smart-down smart-backward smart-forward)) :commands (smart-up smart-down smart-backward smart-forward))
(def-package! wgrep
:commands (wgrep-setup wgrep-change-to-wgrep-mode)
:config (setq wgrep-auto-save-buffer t))
(provide 'core-editor) (provide 'core-editor)
;;; core-editor.el ends here ;;; core-editor.el ends here

View file

@ -34,7 +34,6 @@
(package! smart-forward) (package! smart-forward)
(package! smartparens) (package! smartparens)
(package! undo-tree) (package! undo-tree)
(package! wgrep)
;; core-projects.el ;; core-projects.el
(package! projectile) (package! projectile)

View file

@ -119,3 +119,7 @@
(def-package! helm-describe-modes :commands helm-describe-modes) (def-package! helm-describe-modes :commands helm-describe-modes)
(def-package! wgrep
:commands (wgrep-setup wgrep-change-to-wgrep-mode)
:config (setq wgrep-auto-save-buffer t))

View file

@ -9,3 +9,4 @@
(package! helm-describe-modes :recipe (:fetcher github :repo "emacs-helm/helm-describe-modes")) (package! helm-describe-modes :recipe (:fetcher github :repo "emacs-helm/helm-describe-modes"))
(package! helm-projectile) (package! helm-projectile)
(package! helm-swoop) (package! helm-swoop)
(package! wgrep)

View file

@ -162,3 +162,8 @@ immediately runs it on the current candidate (ending the ivy session)."
("t" (setq truncate-lines (not truncate-lines))) ("t" (setq truncate-lines (not truncate-lines)))
("C" ivy-toggle-case-fold) ("C" ivy-toggle-case-fold)
("o" ivy-occur :exit t))) ("o" ivy-occur :exit t)))
(def-package! wgrep
:commands (wgrep-setup wgrep-change-to-wgrep-mode)
:config (setq wgrep-auto-save-buffer t))

View file

@ -8,3 +8,4 @@
(package! swiper) (package! swiper)
(package! ivy-hydra) (package! ivy-hydra)
(package! ivy-rich) (package! ivy-rich)
(package! wgrep)