|
|
@ -68,6 +68,7 @@ function set-titles-with-command { |
|
|
|
# Set the command name, or in the case of sudo or ssh, the next command. |
|
|
|
# Set the command name, or in the case of sudo or ssh, the next command. |
|
|
|
local cmd=${${1[(wr)^(*=*|sudo|ssh|-*)]}:t} |
|
|
|
local cmd=${${1[(wr)^(*=*|sudo|ssh|-*)]}:t} |
|
|
|
local truncated_cmd="${cmd/(#m)?(#c15,)/${MATCH[1,12]}...}" |
|
|
|
local truncated_cmd="${cmd/(#m)?(#c15,)/${MATCH[1,12]}...}" |
|
|
|
|
|
|
|
unset MATCH |
|
|
|
|
|
|
|
|
|
|
|
if [[ "$TERM" == screen* ]]; then |
|
|
|
if [[ "$TERM" == screen* ]]; then |
|
|
|
set-screen-window-title "$truncated_cmd" |
|
|
|
set-screen-window-title "$truncated_cmd" |
|
|
@ -90,6 +91,7 @@ function set-titles-with-path { |
|
|
|
else |
|
|
|
else |
|
|
|
local abbreviated_path="${absolute_path/#$HOME/~}" |
|
|
|
local abbreviated_path="${absolute_path/#$HOME/~}" |
|
|
|
local truncated_path="${abbreviated_path/(#m)?(#c15,)/...${MATCH[-12,-1]}}" |
|
|
|
local truncated_path="${abbreviated_path/(#m)?(#c15,)/...${MATCH[-12,-1]}}" |
|
|
|
|
|
|
|
unset MATCH |
|
|
|
|
|
|
|
|
|
|
|
if [[ "$TERM" == screen* ]]; then |
|
|
|
if [[ "$TERM" == screen* ]]; then |
|
|
|
set-screen-window-title "$truncated_path" |
|
|
|
set-screen-window-title "$truncated_path" |
|
|
|