dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit 0576444e523330110f9a7534645a8e5e8037438e
parent a60c476fb95194093a3224e6f51cc32d73711f87
Author: Chris Bracken <chris@bracken.jp>
Date:   Fri, 15 May 2026 14:42:19 +0900

zsh: use POSIX syntax for tt function

Diffstat:
M.config/zsh/functions | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.config/zsh/functions b/.config/zsh/functions @@ -1,6 +1,6 @@ # .sh_functions # Sets xterm title to $1. -function tt { +tt() { echo -n "\033]0;$*\007" }