dotfiles/talon/user/community/apps/apple_notes/apple_notes.py

21 lines
354 B
Python

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-[")