Closes #45 #57 #58 #86.
| ... | ... |
@@ -4,10 +4,10 @@ |
| 4 | 4 |
#Limited support for Apple Terminal (Terminal can't set window or tab separately) |
| 5 | 5 |
function title {
|
| 6 | 6 |
if [[ "$TERM" == "screen" ]]; then |
| 7 |
- print -Pn "\ek$1\e\\" #set screen hardstatus, usually truncated at 20 chars |
|
| 7 |
+ print -Pn "\ek$1:q\e\\" #set screen hardstatus, usually truncated at 20 chars |
|
| 8 | 8 |
elif [[ ($TERM =~ "^xterm") ]] || [[ ($TERM == "rxvt") ]] || [[ "$TERM_PROGRAM" == "iTerm.app" ]]; then |
| 9 |
- print -Pn "\e]2;$2\a" #set window name |
|
| 10 |
- print -Pn "\e]1;$1\a" #set icon (=tab) name (will override window name on broken terminal) |
|
| 9 |
+ print -Pn "\e]2;$2:q\a" #set window name |
|
| 10 |
+ print -Pn "\e]1;$1:q\a" #set icon (=tab) name (will override window name on broken terminal) |
|
| 11 | 11 |
fi |
| 12 | 12 |
} |
| 13 | 13 |
|