diff options
author | Zach Berwaldt <zberwaldt@tutamail.com> | 2025-02-19 18:56:45 -0500 |
---|---|---|
committer | Zach Berwaldt <zberwaldt@tutamail.com> | 2025-02-19 18:56:45 -0500 |
commit | 6cd9cab41db438c3a94bfd441d6e18bec2026385 (patch) | |
tree | 5bff452db73ae597bdcc9a342dc54c36abd1d2a4 | |
parent | 4da3c645173454d1fe73fea09710cb3db95f19a9 (diff) |
Add command file and menu file.
-rw-r--r-- | Notes.sublime-commands | 6 | ||||
-rw-r--r-- | Notes.sublime-menu | 16 |
2 files changed, 22 insertions, 0 deletions
diff --git a/Notes.sublime-commands b/Notes.sublime-commands new file mode 100644 index 0000000..03b691b --- /dev/null +++ b/Notes.sublime-commands | |||
@@ -0,0 +1,6 @@ | |||
1 | [ | ||
2 | { | ||
3 | "caption": "Notes: New Note for Today", | ||
4 | "command": "new_note" | ||
5 | } | ||
6 | ] \ No newline at end of file | ||
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 @@ | |||
1 | [ | ||
2 | { | ||
3 | "id": "tools", | ||
4 | "children": [ | ||
5 | { | ||
6 | "caption": "Notes", | ||
7 | "children": [ | ||
8 | { | ||
9 | "caption": "New Note for Today", | ||
10 | "command": "new_note" | ||
11 | } | ||
12 | ] | ||
13 | } | ||
14 | ] | ||
15 | } | ||
16 | ] \ No newline at end of file | ||