diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-08-19 01:14:49 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-08-19 01:14:49 -0400 |
commit | 2d8e908e396f4d8ce02a72a8a058e88b7e4bf6e6 (patch) | |
tree | 0b7ea09196df5833295b0d7eb747dcaa89aa4d03 | |
parent | 00b804ab9b710ea58647ecc60f44d81b62c342c8 (diff) | |
download | emacs.d-2d8e908e396f4d8ce02a72a8a058e88b7e4bf6e6.tar.gz |
Switch projectile-vc commander binding
-rw-r--r-- | lisp/init-projectile.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/init-projectile.el b/lisp/init-projectile.el index c70240e..43035e4 100644 --- a/lisp/init-projectile.el +++ b/lisp/init-projectile.el @@ -50,6 +50,11 @@ path is always relative to `projectile-project-root'." "Find a project directory in other window." (call-interactively 'projectile-find-dir-other-window)) +;; Default binding is v. +(def-projectile-commander-method ?m + "Open project root in vc-dir or magit." + (projectile-vc)) + (def-projectile-commander-method ?c "Run project compilation command." (call-interactively 'projectile-compile-project)) |