summaryrefslogtreecommitdiffstats
path: root/lisp/init-project.el
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2020-11-01 10:46:10 +0100
committerMartin Polden <mpolden@mpolden.no>2020-11-01 10:46:10 +0100
commit9d98b299f7527152449b8b1620b3f1231a9afe06 (patch)
treeaf29d529384fdb07aa2a522f859f646cc5d2f391 /lisp/init-project.el
parent5d2de6dde699879d9a0ea4ed4a63a145ad4b1a2f (diff)
project: Read command when compiling
Diffstat (limited to 'lisp/init-project.el')
-rw-r--r--lisp/init-project.el4
1 files changed, 0 insertions, 4 deletions
diff --git a/lisp/init-project.el b/lisp/init-project.el
index 8e2679b..583bfe2 100644
--- a/lisp/init-project.el
+++ b/lisp/init-project.el
@@ -5,9 +5,6 @@
(use-package project
:ensure t
:init
- ;; avoid reading command when compiling
- (setq compilation-read-command nil)
-
;; commands to show when switching projects
(setq project-switch-commands '((?f "Find file" project-find-file)
(?d "Dired" project-dired)
@@ -19,7 +16,6 @@
;; C-c p switches project
("C-c p" . project-switch-project)
;; C-c m compiles project
- ;; C-u C-c m will force reading command
("C-c m" . project-compile)))
(provide 'init-project)