dotfiles/talon/user/community/apps/windows_terminal/windows_terminal.talon

32 lines
809 B
Text

app: windows_terminal
-
# makes the commands in terminal.talon available
tag(): terminal
# activates the implementation of the commands/functions in terminal.talon
tag(): user.generic_windows_shell
# makes commands for certain applications available
# you can deactivate them if you do not use the application
tag(): user.git
tag(): user.anaconda
# tag(): user.kubectl
tag(): user.tabs
# TODO: file_manager
tag(): user.splits
settings open: key(ctrl-,)
focus left: key(ctrl-alt-shift-left)
focus right: key(ctrl-alt-shift-right)
focus up: key(ctrl-alt-shift-up)
focus down: key(ctrl-alt-shift-down)
term menu: key(ctrl-shift-f1)
find it: edit.find()
find it <phrase>$:
# handle consecutive finds by first escaping out of any previous one
key(escape)
# make it so
edit.find("{phrase}\n")