From 6b4b2c588c927a9798f3d9ec71767e94f0618489 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Sun, 26 Oct 2025 17:14:51 -0500 Subject: [PATCH] Rework notes task to make edit the primary one What was 'edit' has been renamed to 'open'. And 'edit' is now what was not so clearly named 'save'. --- Taskfile.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index 9dcc8a0..5e76659 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -23,6 +23,12 @@ tasks: interactive: true silent: true + notes:edit: + desc: All-in-one edit, commit, and push notes + cmds: + - task notes:open + - task notes:push + notes:sync: desc: Sync latest changes from the notes submodule cmds: @@ -30,8 +36,8 @@ tasks: - cd {{.NOTES_DIR}} && git checkout main silent: false - notes:edit: - desc: Edit NOTES.md (syncs latest changes first) + notes:open: + desc: Opens NOTES.md (syncs latest changes first) in default editor deps: [notes:sync] cmds: - $EDITOR {{.NOTES_FILE}} @@ -52,12 +58,6 @@ tasks: cmds: - git status - notes:save: - desc: Quick save - edit, commit, and push notes - cmds: - - task notes:edit - - task notes:push - notes:pull: desc: Pull latest changes (alias for sync) cmds: