home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit fa8a9cb4809c283e2c4df3625a5250976d02fb58
parent bcde528229aabe74de35596af61224b19f56e213
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Fri, 11 Sep 2020 16:21:39 +0100

tools/emacs: update from notes

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mtools/emacs/config/config-projects.el | 16++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/tools/emacs/config/config-projects.el b/tools/emacs/config/config-projects.el @@ -59,6 +59,14 @@ "Check if a project is a ko project and has a config/ folder full of yaml" (and (projectile-ko-project-p) (projectile-verify-file-wildcard "config/*.yaml"))) + (projectile-register-project-type 'ko #'projectile-ko-project-p + :project-file ".ko.yaml" ; might not be required + :configure 'projectile-ko-configure-command + :compile 'projectile-ko-compile-command + :test 'projectile-ko-test-command + :run 'projectile-ko-run-command + :package 'projectile-ko-package-command + :install 'projectile-ko-install-command) (defun projectile-ko-configure-command () "define a configure command for a ko project, depending on the opened file" (cond @@ -131,14 +139,6 @@ (defun projectile-ko-install-command () "define a install command for a ko project, depending on the openend file " "ko apply -f config/") - (projectile-register-project-type 'ko #'projectile-ko-project-p - :project-file ".ko.yaml" ; might not be required - :configure 'projectile-ko-configure-command - :compile 'projectile-ko-compile-command - :test 'projectile-ko-test-command - :run 'projectile-ko-run-command - :package 'projectile-ko-package-command - :install 'projectile-ko-install-command) (projectile-mode)) (provide 'config-projects)