summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugues Hiegel <hugues.hiegel@advisorsla.com>2018-10-02 13:57:04 +0200
committerHugues Hiegel <hugues.hiegel@advisorsla.com>2018-10-02 13:57:04 +0200
commit96840d9338607f52da7812af56e9ad5a9b2e422e (patch)
tree2c3e5b402a80db52101f3e237b1a268b5b3b8b24
parent8313760ceb3e06c975d3d0711648fafdcee191e2 (diff)
[Term Titles] Fix broken `%` escape sequence protection
-rw-r--r--01_Internal.zsh2
1 files changed, 1 insertions, 1 deletions
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=""