mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
lib: correct :q syntax in title function for clarity
This commit is contained in:
parent
cacf5d0435
commit
765966606d
1 changed files with 5 additions and 5 deletions
|
@ -18,16 +18,16 @@ function title {
|
||||||
|
|
||||||
case "$TERM" in
|
case "$TERM" in
|
||||||
cygwin|xterm*|putty*|rxvt*|konsole*|ansi|mlterm*)
|
cygwin|xterm*|putty*|rxvt*|konsole*|ansi|mlterm*)
|
||||||
print -Pn "\e]2;$2:q\a" # set window name
|
print -Pn "\e]2;${2:q}\a" # set window name
|
||||||
print -Pn "\e]1;$1:q\a" # set tab name
|
print -Pn "\e]1;${1:q}\a" # set tab name
|
||||||
;;
|
;;
|
||||||
screen*|tmux*)
|
screen*|tmux*)
|
||||||
print -Pn "\ek$1:q\e\\" # set screen hardstatus
|
print -Pn "\ek${1:q}\e\\" # set screen hardstatus
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
if [[ "$TERM_PROGRAM" == "iTerm.app" ]]; then
|
if [[ "$TERM_PROGRAM" == "iTerm.app" ]]; then
|
||||||
print -Pn "\e]2;$2:q\a" # set window name
|
print -Pn "\e]2;${2:q}\a" # set window name
|
||||||
print -Pn "\e]1;$1:q\a" # set tab name
|
print -Pn "\e]1;${1:q}\a" # set tab name
|
||||||
else
|
else
|
||||||
# Try to use terminfo to set the title
|
# Try to use terminfo to set the title
|
||||||
# If the feature is available set title
|
# If the feature is available set title
|
||||||
|
|
Loading…
Reference in a new issue