dotfiles/talon/community/community-cursorless-0.4.0/apps/mac/terminal/terminal.talon
2024-11-16 20:27:38 -07:00

35 lines
651 B
Text

app: apple_terminal
-
#comment or remove tags for command sets you don't want
tag(): user.file_manager
tag(): user.generic_terminal
tag(): user.git
tag(): user.kubectl
tag(): user.tabs
tag(): terminal
action(user.file_manager_open_parent):
insert("cd ..")
key(enter)
action(app.tab_open):
key(cmd-t)
action(app.tab_close):
key(cmd-w)
action(app.tab_next):
key(ctrl-tab)
action(app.tab_previous):
key(ctrl-shift-tab)
action(app.window_open):
key(cmd-n)
action(edit.page_down):
key(command-pagedown)
action(edit.page_up):
key(command-pageup)
rerun search:
key(ctrl-r)
suspend:
key(ctrl-z)
resume:
insert("fg")
key(enter)