fef0277998
* core: set of tools to work on kakoune source code * base: very common languages and tools * extra: less common languages and tools
51 lines
1.7 KiB
Plaintext
51 lines
1.7 KiB
Plaintext
# http://tmux.github.io/
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
## The default behaviour for the `new` command is to open an horizontal pane in a tmux session
|
|
hook global KakBegin .* %{
|
|
%sh{
|
|
if [ -n "$TMUX" ]; then
|
|
echo "alias global focus tmux-focus"
|
|
echo "alias global new tmux-new-horizontal"
|
|
fi
|
|
}
|
|
}
|
|
|
|
## Temporarily override the default client creation command
|
|
def -hidden -params 1.. tmux-new-impl %{
|
|
%sh{
|
|
if [ -z "$TMUX" ]; then
|
|
echo "echo -color Error This command is only available in a tmux session"
|
|
exit
|
|
fi
|
|
tmux_args="$1"
|
|
shift
|
|
if [ $# -ne 0 ]; then kakoune_params="-e '$@'"; fi
|
|
tmux $tmux_args "kak -c ${kak_session} ${kakoune_params}" < /dev/null > /dev/null 2>&1 &
|
|
}
|
|
}
|
|
|
|
def tmux-new-vertical -params .. -command-completion -docstring "Create a new vertical pane in tmux" %{
|
|
tmux-new-impl 'split-window -v' %arg{@}
|
|
}
|
|
|
|
def tmux-new-horizontal -params .. -command-completion -docstring "Create a new horizontal pane in tmux" %{
|
|
tmux-new-impl 'split-window -h' %arg{@}
|
|
}
|
|
|
|
def tmux-new-window -params .. -command-completion -docstring "Create a new window in tmux" %{
|
|
tmux-new-impl 'new-window' %arg{@}
|
|
}
|
|
|
|
def -docstring "focus given client" \
|
|
-params 0..1 -client-completion \
|
|
tmux-focus %{ %sh{
|
|
if [ $# -gt 1 ]; then
|
|
echo "echo -color Error 'too many arguments, use focus [client]'"
|
|
elif [ $# -eq 1 ]; then
|
|
echo "eval -client '$1' focus"
|
|
elif [ -n "${kak_client_env_TMUX}" ]; then
|
|
TMUX="${kak_client_env_TMUX}" tmux select-pane -t "${kak_client_env_TMUX_PANE}" > /dev/null
|
|
fi
|
|
} }
|