From cff1919f91b4727957bf7f354ea73e798e2d381f Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sun, 25 May 2025 23:39:40 -0400 Subject: [PATCH] AutoYADM commit: 2025-05-25 23:39:40 --- .config/kak/autoload/title.kak | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.config/kak/autoload/title.kak b/.config/kak/autoload/title.kak index 0e690279..1a5dbe75 100644 --- a/.config/kak/autoload/title.kak +++ b/.config/kak/autoload/title.kak @@ -36,7 +36,6 @@ declare-option -docstring %{ } str bar_inactive_modified_fmt '%s %s+' define-command -hidden bar-buflist %{ evaluate-commands %sh{ -#!/bin/sh list='' index=0 while read buf; do @@ -60,12 +59,12 @@ EOF title="$list - $kak_client@[$kak_session]" printf "set-option -add global ui_options %%{terminal_title=%s}\n" "$title" - } +} } -# hook global WinDisplay .* bar-buflist -# hook global FocusIn .* bar-buflist -# hook global FocusOut .* bar-buflist -# hook global WinCreate .* bar-buflist -# hook global BufWritePost .* bar-buflist -# hook global ModeChange .* bar-buflist +hook global WinDisplay .* bar-buflist +hook global FocusIn .* bar-buflist +hook global FocusOut .* bar-buflist +hook global WinCreate .* bar-buflist +hook global BufWritePost .* bar-buflist +hook global ModeChange .* bar-buflist