diff options
author | Alan Pearce | 2017-07-11 17:10:38 +0200 |
---|---|---|
committer | Alan Pearce | 2017-07-11 17:10:38 +0200 |
commit | 9aac52ad89c7fa8e6cb0ad00a7bb2c81291099d2 (patch) | |
tree | c0e9aff74ff34dbac8739df6970a28e0854472f1 /emacs/.emacs.d/init.org | |
parent | 267aab78cbb12589a80afae7ec7cb851e1750895 (diff) | |
download | nixfiles-9aac52ad89c7fa8e6cb0ad00a7bb2c81291099d2.tar.lz nixfiles-9aac52ad89c7fa8e6cb0ad00a7bb2c81291099d2.tar.zst nixfiles-9aac52ad89c7fa8e6cb0ad00a7bb2c81291099d2.zip |
Emacs: Use ripgrep for projectile-commander "A" binding
Diffstat (limited to 'emacs/.emacs.d/init.org')
-rw-r--r-- | emacs/.emacs.d/init.org | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index 98fb06ff..8d7ef0e1 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -638,6 +638,9 @@ ones. :after (counsel projectile) :config (progn (counsel-projectile-on) + (def-projectile-commander-method ?A + "Find rg on project." + (call-interactively #'counsel-projectile-rg)) (define-key projectile-mode-map [remap counsel-projectile-ag] #'counsel-projectile-rg))) #+END_SRC |