From 96840d9338607f52da7812af56e9ad5a9b2e422e Mon Sep 17 00:00:00 2001 From: Hugues Hiegel Date: Tue, 2 Oct 2018 13:57:04 +0200 Subject: [Term Titles] Fix broken `%` escape sequence protection --- 01_Internal.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01_Internal.zsh b/01_Internal.zsh index 20c02c3..a73772c 100644 --- a/01_Internal.zsh +++ b/01_Internal.zsh @@ -52,7 +52,7 @@ __term_title() print -Pn "\e]l%n@%m %~$@\e\\" # Never tested.. ;; *term*|rxvt*|putty) - print -Pn "\e]0;%n@%m (%l) %~${@//%/%%}\a" # Sets term title + print -Pn "\e]0;%n@%m (%l) %~${@//\%/%%}\a" # Sets term title ;; screen*) local _sep="" -- cgit v1.2.3