all repos — archive/dotfiles @ 89e7a9363975172443cfdcd87cc525076d11d64c

Superseded by nixfiles

Emacs: bind magit-status keys to projectile-vc

More general, and won't have to find the .git folder every time as
projectile will already know the project root.
Alan Pearce alan@alanpearce.co.uk
Thu, 12 Jun 2014 21:55:03 +0100
commit

89e7a9363975172443cfdcd87cc525076d11d64c

parent

c5115c431e9bcd04cc2753e109a6fae7b97d439c

1 files changed, 3 insertions(+), 3 deletions(-)

jump to
M tag-emacs/emacs.d/init.eltag-emacs/emacs.d/init.el
@@ -651,7 +651,9 @@ ;;;; Projects 
 (req-package projectile
   :bind (("C-c C-f" . projectile-find-file)
-         ("s-x s-f" . projectile-find-file))
+         ("s-x s-f" . projectile-find-file)
+         ("C-x g" . projectile-vc)
+         ("s-G"   . projectile-vc))
   :init (projectile-global-mode)
   :diminish projectile-mode
   :config (progn
@@ -670,8 +672,6 @@ (req-package magit
   :diminish magit-auto-revert-mode
   :commands (magit-status)
-  :bind (("C-x g" . magit-status)
-         ("s-G" . magit-status))
   :init (add-hook 'magit-mode-hook #'magit-load-config-extensions))
 
 ;;;; Spelling