2020-07-05 04:02:59 +02:00
|
|
|
# https://sw.kovidgoyal.net/kitty/index.html
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
2018-06-19 11:39:45 +02:00
|
|
|
|
2019-03-13 22:00:59 +01:00
|
|
|
provide-module kitty %{
|
|
|
|
|
2020-07-05 04:02:59 +02:00
|
|
|
# ensure that we're running on kitty
|
|
|
|
evaluate-commands %sh{
|
2020-07-06 13:55:54 +02:00
|
|
|
[ -z "${kak_opt_windowing_modules}" ] || [ "$TERM" = "xterm-kitty" ] || echo 'fail Kitty not detected'
|
2020-07-05 04:02:59 +02:00
|
|
|
}
|
|
|
|
|
2021-03-04 20:22:59 +01:00
|
|
|
declare-option -docstring %{window type that kitty creates on new and repl calls (window|os-window)} str kitty_window_type window
|
2019-03-13 22:00:59 +01:00
|
|
|
|
2022-02-22 10:14:47 +01:00
|
|
|
define-command kitty-terminal -params 1.. -docstring '
|
2018-12-21 18:14:28 +01:00
|
|
|
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{
|
2021-03-04 20:22:59 +01:00
|
|
|
match=""
|
2021-02-28 22:47:09 +01:00
|
|
|
if [ -n "$kak_client_env_KITTY_WINDOW_ID" ]; then
|
2023-05-07 12:04:55 +02:00
|
|
|
match="--match=window_id:$kak_client_env_KITTY_WINDOW_ID"
|
2021-02-28 22:47:09 +01:00
|
|
|
fi
|
|
|
|
|
2021-03-04 20:22:59 +01:00
|
|
|
listen=""
|
|
|
|
if [ -n "$kak_client_env_KITTY_LISTEN_ON" ]; then
|
|
|
|
listen="--to=$kak_client_env_KITTY_LISTEN_ON"
|
2021-01-21 10:58:48 +01:00
|
|
|
fi
|
2021-03-04 20:22:59 +01:00
|
|
|
|
|
|
|
kitty @ $listen launch --no-response --type="$kak_opt_kitty_window_type" --cwd="$PWD" $match "$@"
|
2018-12-02 13:59:45 +01:00
|
|
|
}
|
|
|
|
}
|
2022-02-22 10:14:47 +01:00
|
|
|
complete-command kitty-terminal shell
|
2018-12-02 13:59:45 +01:00
|
|
|
|
2022-02-22 10:14:47 +01:00
|
|
|
define-command kitty-terminal-tab -params 1.. -docstring '
|
2018-12-21 18:14:28 +01:00
|
|
|
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{
|
2021-03-04 20:22:59 +01:00
|
|
|
match=""
|
2021-02-28 22:47:09 +01:00
|
|
|
if [ -n "$kak_client_env_KITTY_WINDOW_ID" ]; then
|
2023-05-07 12:04:55 +02:00
|
|
|
match="--match=window_id:$kak_client_env_KITTY_WINDOW_ID"
|
2021-02-28 22:47:09 +01:00
|
|
|
fi
|
|
|
|
|
2021-03-04 20:22:59 +01:00
|
|
|
listen=""
|
|
|
|
if [ -n "$kak_client_env_KITTY_LISTEN_ON" ]; then
|
|
|
|
listen="--to=$kak_client_env_KITTY_LISTEN_ON"
|
2021-01-22 01:19:35 +01:00
|
|
|
fi
|
2021-03-04 20:22:59 +01:00
|
|
|
|
|
|
|
kitty @ $listen launch --no-response --type=tab --cwd="$PWD" $match "$@"
|
2018-12-02 13:59:45 +01:00
|
|
|
}
|
|
|
|
}
|
2022-02-22 10:14:47 +01:00
|
|
|
complete-command kitty-terminal-tab shell
|
2018-12-02 13:59:45 +01:00
|
|
|
|
2022-02-22 10:14:47 +01:00
|
|
|
define-command kitty-focus -params ..1 -docstring '
|
2018-12-02 13:59:45 +01:00
|
|
|
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
|
2021-03-04 20:22:59 +01:00
|
|
|
match=""
|
|
|
|
if [ -n "$kak_client_env_KITTY_WINDOW_ID" ]; then
|
|
|
|
match="--match=id:$kak_client_env_KITTY_WINDOW_ID"
|
2021-01-22 01:19:35 +01:00
|
|
|
fi
|
2021-03-04 20:22:59 +01:00
|
|
|
|
|
|
|
listen=""
|
|
|
|
if [ -n "$kak_client_env_KITTY_LISTEN_ON" ]; then
|
|
|
|
listen="--to=$kak_client_env_KITTY_LISTEN_ON"
|
|
|
|
fi
|
|
|
|
|
|
|
|
kitty @ $listen focus-window --no-response $match
|
2018-06-19 11:39:45 +02:00
|
|
|
fi
|
2018-12-02 13:59:45 +01:00
|
|
|
}
|
|
|
|
}
|
2022-07-19 15:56:05 +02:00
|
|
|
complete-command -menu kitty-focus client
|
2018-12-02 13:59:45 +01: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
|
|
|
|
|
|
|
|
}
|