diff options
author | Alan Pearce | 2017-09-18 18:57:53 +0200 |
---|---|---|
committer | Alan Pearce | 2017-09-18 18:57:53 +0200 |
commit | 234961c3386df99937a4b6851839985f92ed4293 (patch) | |
tree | b182a3f19795bccc0c87eb7da3830a10bc7a908a | |
parent | bad467785a2b3ecd11898b9d23d7c470521d32b6 (diff) | |
download | nixfiles-234961c3386df99937a4b6851839985f92ed4293.tar.lz nixfiles-234961c3386df99937a4b6851839985f92ed4293.tar.zst nixfiles-234961c3386df99937a4b6851839985f92ed4293.zip |
Emacs: Use correct keybinding syntax for projectile-ripgrep
-rw-r--r-- | emacs/.emacs.d/main.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el index f76c3298..2e6eeec5 100644 --- a/emacs/.emacs.d/main.el +++ b/emacs/.emacs.d/main.el @@ -521,7 +521,8 @@ (use-package projectile-ripgrep :after (ripgrep projectile) :if (executable-find "rg") - :bind (("C-c p s r" . projectile-ripgrep))) + :bind (:map projectile-command-map + ("s r" . projectile-ripgrep))) ;; #+END_SRC ;;;;;; Projectile |