dotfiles/.config/kak/autoload/title.kak

23 lines
760 B
Text

define-command -hidden bar-buflist %{
evaluate-commands %sh{
list=''
while read buf; do
if [ "$buf" = '*debug*' ]; then
continue
fi
index=$(($index + 1))
if [ "$buf" = "$kak_bufname" ]; then
cur=$(printf '[%s %s]' "$index" "$buf")
else
cur=$(printf '%s %s' "$index" "$buf")
fi
list="$list $cur"
done <<<$(printf '%s\n' "$kak_buflist" | tr ' ' '\n')
title="$list - $kak_client@[$kak_session]"
printf "set-option -add global ui_options %%{terminal_title=%s}" "$title"
}
}
hook global WinDisplay .* bar-buflist
hook global FocusIn .* bar-buflist
hook global FocusOut .* bar-buflist