2018-09-23 22:15:29 +02:00
|
|
|
|
|
|
|
hook -group kitty-hooks global KakBegin .* %sh{
|
2018-06-23 07:55:38 +02:00
|
|
|
if [ "$TERM" = "xterm-kitty" ] && [ -z "$TMUX" ]; then
|
2019-03-13 22:00:59 +01:00
|
|
|
echo "require-module kitty"
|
2018-06-19 11:39:45 +02:00
|
|
|
fi
|
2018-07-02 12:30:30 +02:00
|
|
|
}
|
2018-06-19 11:39:45 +02:00
|
|
|
|
2019-03-13 22:00:59 +01:00
|
|
|
provide-module kitty %{
|
|
|
|
|
|
|
|
declare-option -docstring %{window type that kitty creates on new and repl calls (kitty|os)} str kitty_window_type kitty
|
|
|
|
|
2018-12-21 18:14:28 +01:00
|
|
|
define-command kitty-terminal -params 1.. -shell-completion -docstring '
|
|
|
|
kitty-terminal <program> [<arguments>]: create a new terminal as a kitty window
|
|
|
|
The program passed as argument will be executed in the new terminal' \
|
2018-12-02 13:59:45 +01:00
|
|
|
%{
|
|
|
|
nop %sh{
|
2019-03-28 14:28:40 +01:00
|
|
|
kitty @ new-window --no-response --window-type $kak_opt_kitty_window_type --cwd "$PWD" "$@"
|
2018-12-02 13:59:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-21 18:14:28 +01:00
|
|
|
define-command kitty-terminal-tab -params 1.. -shell-completion -docstring '
|
|
|
|
kitty-terminal-tab <program> [<arguments>]: create a new terminal as kitty tab
|
|
|
|
The program passed as argument will be executed in the new terminal' \
|
2018-12-02 13:59:45 +01:00
|
|
|
%{
|
|
|
|
nop %sh{
|
2019-03-28 14:28:40 +01:00
|
|
|
kitty @ new-window --no-response --new-tab --cwd "$PWD" "$@"
|
2018-12-02 13:59:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
define-command kitty-focus -params ..1 -client-completion -docstring '
|
|
|
|
kitty-focus [<client>]: focus the given client
|
|
|
|
If no client is passed then the current one is used' \
|
|
|
|
%{
|
|
|
|
evaluate-commands %sh{
|
2018-06-19 11:39:45 +02:00
|
|
|
if [ $# -eq 1 ]; then
|
2018-12-02 13:59:45 +01:00
|
|
|
printf "evaluate-commands -client '%s' focus" "$1"
|
2018-06-19 11:39:45 +02:00
|
|
|
else
|
2018-09-24 06:12:07 +02:00
|
|
|
kitty @ focus-tab --no-response -m=id:$kak_client_env_KITTY_WINDOW_ID
|
2018-09-01 21:14:33 +02:00
|
|
|
kitty @ focus-window --no-response -m=id:$kak_client_env_KITTY_WINDOW_ID
|
2018-06-19 11:39:45 +02:00
|
|
|
fi
|
2018-12-02 13:59:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
define-command kitty-repl -params .. -shell-completion -docstring '
|
|
|
|
kitty-repl [<arguments>]: create a new window for repl interaction
|
|
|
|
All optional parameters are forwarded to the new window' \
|
|
|
|
%{
|
|
|
|
nop %sh{
|
|
|
|
if [ $# -eq 0 ]; then
|
|
|
|
cmd="${SHELL:-/bin/sh}"
|
|
|
|
else
|
|
|
|
cmd="$*"
|
|
|
|
fi
|
2018-10-02 23:19:10 +02:00
|
|
|
kitty @ new-window --no-response --window-type $kak_opt_kitty_window_type --title kak_repl_window --cwd "$PWD" $cmd < /dev/null > /dev/null 2>&1 &
|
2018-12-02 13:59:45 +01:00
|
|
|
}
|
|
|
|
}
|
2018-09-23 22:15:29 +02:00
|
|
|
|
|
|
|
define-command kitty-send-text -docstring "send the selected text to the repl window" %{
|
|
|
|
nop %sh{
|
|
|
|
kitty @ send-text -m=title:kak_repl_window "${kak_selection}"
|
2018-06-19 11:39:45 +02:00
|
|
|
}
|
|
|
|
}
|
2019-03-13 22:00:59 +01:00
|
|
|
|
|
|
|
alias global terminal kitty-terminal
|
|
|
|
alias global terminal-tab kitty-terminal-tab
|
|
|
|
alias global focus kitty-focus
|
|
|
|
alias global repl kitty-repl
|
|
|
|
alias global send-text kitty-send-text
|
|
|
|
|
|
|
|
}
|