Reenable dispatch actions when entering a project

This is the default, and I often find myself switching from eshell to dired when entering a new
project – but not always.  So let's ask what to open when entering a new project instead.
This commit is contained in:
Daniel Borchmann 2025-09-18 16:42:44 +02:00
parent b39a05a392
commit bf47708450
No known key found for this signature in database
GPG Key ID: 50EA937BF472ADD1

View File

@ -318,7 +318,13 @@
(use-package project (use-package project
:init (setopt project-list-file (expand-file-name "projects" emacs-d-userdata) :init (setopt project-list-file (expand-file-name "projects" emacs-d-userdata)
project-switch-commands 'project-eshell project-switch-commands '((project-dired "Dired")
(project-find-file "Find file")
(project-find-regexp "Find regexp")
(project-find-dir "Find directory")
(project-vc-dir "VC-Dir")
(project-eshell "Eshell")
(project-any-command "Other"))
project-vc-merge-submodules nil project-vc-merge-submodules nil
project-mode-line nil) project-mode-line nil)
:config (progn :config (progn