init commit

This commit is contained in:
unknown
2025-08-19 08:06:37 -04:00
commit 2957b5515a
743 changed files with 45495 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
from talon import Context, actions
ctx = Context()
ctx.matches = r"""
app: notes
"""
@ctx.action_class("edit")
class EditActions:
def zoom_in():
actions.key("shift-cmd->")
def zoom_out():
actions.key("shift-cmd-<")
def zoom_reset():
actions.key("shift-cmd-0")
def indent_less():
actions.key("cmd-[")
@@ -0,0 +1,32 @@
os: mac
and app: notes
-
new note: key(cmd-n)
duplicate note: key(cmd-d)
new folder: key(shift-cmd-n)
toggle folders: key(alt-cmd-s)
show main: key(cmd-0)
list view: key(cmd-1)
gallery view: key(cmd-2)
toggle attachments: key(cmd-3)
find all: key(alt-cmd-f)
print note: key(cmd-p)
attach file: key(shift-cmd-a)
create link: key(cmd-k)
insert table: key(alt-cmd-t)
apply title: key(shift-cmd-t)
apply heading: key(shift-cmd-h)
apply subheading: key(shift-cmd-j)
apply body: key(shift-cmd-b)
apply mono: key(shift-cmd-m)
apply bullet: key(shift-cmd-7)
apply dash: key(shift-cmd-8)
apply number: key(shift-cmd-9)
apply checklist: key(shift-cmd-l)
increase font: key(cmd-+)
decrease font: key(cmd--)
line break: key(ctrl-enter)
mark: key(shift-cmd-u)
drag [line] down: key('ctrl-cmd-down')
drag [line] up: key('ctrl-cmd-up')