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
+44
View File
@@ -0,0 +1,44 @@
from talon import Context, Module, actions
mod = Module()
ctx = Context()
apps = mod.apps
apps.meld = """
os: windows
and app.name: Visual diff and merge tool
os: windows
and app.exe: meld.exe
"""
ctx.matches = r"""
app: meld
"""
@ctx.action_class("app")
class AppActions:
def tab_open():
actions.key("ctrl-n")
def tab_previous():
actions.key("ctrl-alt-pageup")
def tab_next():
actions.key("ctrl-alt-pagedown")
def tab_reopen():
print("Meld does not support this action.")
@ctx.action_class("user")
class UserActions:
def tab_jump(number):
if number < 10:
actions.key(f"alt-{number}")
def tab_final():
print("Meld does not support this action.")
def tab_duplicate():
print("Meld does not support this action.")
+6
View File
@@ -0,0 +1,6 @@
app: meld
-
tag(): user.tabs
change next: key(alt-down)
change (previous | last): key(alt-up)