add action to start eshell

This commit is contained in:
Eric Danan 2016-04-12 10:06:52 +02:00
parent 18f1429a27
commit 4950d08fa1

View file

@ -169,7 +169,11 @@ With a prefix ARG invalidates the cache first."
("g" (lambda (dir)
(let ((projectile-switch-project-action 'projectile-vc))
(projectile-switch-project-by-name dir arg)))
"open in vc-dir / magit / monky")))
"open in vc-dir / magit / monky")
("e" (lambda (dir)
(let ((projectile-switch-project-action 'projectile-run-eshell))
(projectile-switch-project-by-name dir arg)))
"start eshell")))
(provide 'counsel-projectile)