diff --git a/ha-config.org b/ha-config.org index 16ae1d8..4b56c75 100644 --- a/ha-config.org +++ b/ha-config.org @@ -1520,7 +1520,7 @@ While I don't /need/ all the features that [[https://github.com/bbatsov/projecti "p a" '("add new project" . projectile-add-known-project) "p b" '("switch to project buffer" . projectile-switch-to-buffer) "p C" '("compile in project" . projectile-compile-project) - "p c" '("repeat last command" . projectile-repeat-last-command) + "p c" '("recompile" . recompile) "p d" '("remove known project" . projectile-remove-known-project) "p e" '("edit project .dir-locals" . projectile-edit-dir-locals) "p f" '("find file in project" . projectile-find-file) diff --git a/ha-programming.org b/ha-programming.org index 5775f95..41b1125 100644 --- a/ha-programming.org +++ b/ha-programming.org @@ -435,8 +435,6 @@ My replacement to [[help:compile][compile]] just uses my new =completing-read= f (interactive (list (completing-read "Compile command: " (ha--compile-command-list) nil nil "" 'compile-history))) - ;; Not sure if I need to add it myself: - ;; (add-to-history compile-history command) (let ((default-directory (projectile-project-root))) (compile command))) #+end_src