summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/init-project.el9
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/init-project.el b/lisp/init-project.el
index 90d4a96..5ce518a 100644
--- a/lisp/init-project.el
+++ b/lisp/init-project.el
@@ -13,10 +13,11 @@
:ensure t
:init
;; commands to show when switching projects
- (setq project-switch-commands '((?f "Find file" project-find-file)
- (?d "Dired" project-dired)
- (?g "Grep" mpolden/project-git-grep)
- (?m "Magit" magit-status)))
+ (setq project-switch-commands '((project-find-file "Find file")
+ (project-dired "Dired")
+ (project-eshell "Eshell")
+ (mpolden/project-git-grep "Grep" ?g)
+ (magit-project-status "Magit" ?m)))
:bind (;; C-x f finds file in project
("C-x f" . project-find-file)