From 6cd9cab41db438c3a94bfd441d6e18bec2026385 Mon Sep 17 00:00:00 2001 From: Zach Berwaldt Date: Wed, 19 Feb 2025 18:56:45 -0500 Subject: Add command file and menu file. --- Notes.sublime-menu | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Notes.sublime-menu (limited to 'Notes.sublime-menu') diff --git a/Notes.sublime-menu b/Notes.sublime-menu new file mode 100644 index 0000000..cf9560f --- /dev/null +++ b/Notes.sublime-menu @@ -0,0 +1,16 @@ +[ + { + "id": "tools", + "children": [ + { + "caption": "Notes", + "children": [ + { + "caption": "New Note for Today", + "command": "new_note" + } + ] + } + ] + } +] \ No newline at end of file -- cgit v1.1 From c6eb143b51b0c105b157e9d408d6e9fcfaa5abfc Mon Sep 17 00:00:00 2001 From: Zach Berwaldt Date: Wed, 19 Feb 2025 20:01:21 -0500 Subject: add new command. Major refactor. --- Notes.sublime-menu | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Notes.sublime-menu') diff --git a/Notes.sublime-menu b/Notes.sublime-menu index cf9560f..cb87c38 100644 --- a/Notes.sublime-menu +++ b/Notes.sublime-menu @@ -8,6 +8,10 @@ { "caption": "New Note for Today", "command": "new_note" + }, + { + "caption": "New Note for Tomorrow", + "command": "new_note_for_tomorrow" } ] } -- cgit v1.1