2020-07-05 04:02:59 +02:00
|
|
|
# Attempt to detect the windowing environment we're operating in
|
|
|
|
#
|
|
|
|
# We try to load modules from the windowing_modules str-list option in order,
|
|
|
|
# stopping when one of the modules loads successfully. This ensures that only
|
|
|
|
# a single module is loaded by default.
|
|
|
|
#
|
|
|
|
# On load each module must attempt to detect the environment it's appropriate
|
|
|
|
# for, and if the environment isn't appropriate it must fail with an error.
|
|
|
|
# In addition, each module must check for the length of the windowing_modules
|
|
|
|
# str-list option defined below, and must /not/ check for an appropriate
|
|
|
|
# environment if the list is empty. An example of this test:
|
|
|
|
#
|
|
|
|
# evaluate-commands %sh{
|
|
|
|
# [ -z "${kak_opt_windowing_modules}" ] || [ -n "$TMUX" ] || echo 'fail tmux not detected'
|
|
|
|
# }
|
|
|
|
#
|
|
|
|
# Each module is expected to define at least two aliases:
|
|
|
|
# * terminal - create a new terminal with sensible defaults
|
|
|
|
# * focus - focus the specified client, defaulting to the current client
|
|
|
|
#
|
|
|
|
|
|
|
|
declare-option -docstring \
|
|
|
|
"Ordered list of windowing modules to try and load. An empty list disables
|
|
|
|
both automatic module loading and environment detection, enabling complete
|
|
|
|
manual control of the module loading." \
|
2023-06-09 09:43:07 +02:00
|
|
|
str-list windowing_modules 'tmux' 'screen' 'zellij' 'kitty' 'iterm' 'sway' 'wayland' 'x11' 'wezterm'
|
2020-07-05 04:02:59 +02:00
|
|
|
|
|
|
|
hook -group windowing global KakBegin .* %{
|
|
|
|
|
|
|
|
evaluate-commands %sh{
|
|
|
|
set -- ${kak_opt_windowing_modules}
|
|
|
|
if [ $# -gt 0 ]; then
|
|
|
|
echo 'try %{ '
|
2023-06-13 09:08:42 +02:00
|
|
|
while [ $# -ge 1 ]; do
|
2020-07-05 04:02:59 +02:00
|
|
|
echo "require-module ${1} } catch %{ "
|
|
|
|
shift
|
|
|
|
done
|
2023-06-13 09:08:42 +02:00
|
|
|
echo "echo -debug 'no windowing module detected' }"
|
2020-07-05 04:02:59 +02:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|