summaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2021-03-26 13:31:27 +0100
committerMartin Polden <mpolden@mpolden.no>2021-03-26 13:32:13 +0100
commit0d86497c94c625aea589fc5fe92e63391ad9bf43 (patch)
treede9293e87af8649d685747faf88c113c6c902200 /lisp
parent5b49d15df0ca7808cd7165abf00ede4620d5c9aa (diff)
project: Update commands
Diffstat (limited to 'lisp')
-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)