fixes multiple truncate_to_unique inconsistencies

1. also truncate first dir
2. length of `POWERLEVEL9K_SHORTEN_DELIMITER` is now taken into account
3. set `POWERLEVEL9K_SHORTEN_DIR_LENGTH=0` to truncate even the last dir
pull/73/head
Syphdias 5 years ago
parent bbebf516ab
commit 6c61fb5c20
No known key found for this signature in database
GPG Key ID: 6F62E6FB3E67F92D

@ -836,8 +836,8 @@ prompt_dir() {
;;
truncate_to_unique)
local -i i=2 n=1
[[ $p == /* ]] && (( ++i ))
(( POWERLEVEL9K_SHORTEN_DIR_LENGTH > 0 )) && n=POWERLEVEL9K_SHORTEN_DIR_LENGTH
delim=${POWERLEVEL9K_SHORTEN_DELIMITER-'*'}
(( POWERLEVEL9K_SHORTEN_DIR_LENGTH >= 0 )) && n=POWERLEVEL9K_SHORTEN_DIR_LENGTH
local pat=${POWERLEVEL9K_SHORTEN_FOLDER_MARKER-'(.bzr|CVS|.git|.hg|.svn|.citc)'}
local parent="${PWD%/${(pj./.)parts[i,-1]}}"
for (( ; i <= $#parts - n; ++i )); do
@ -850,14 +850,13 @@ prompt_dir() {
fi
fi
local -i j=1
for (( ; j < $#dir; ++j )); do
for (( ; j + $#delim < $#dir; ++j )); do
local -a matching=($parent/$dir[1,j]*/(N))
(( $#matching == 1 )) && break
done
(( j == $#dir )) || parts[i]=$dir[1,j]$'\0'
(( j + $#delim >= $#dir )) || parts[i]=$dir[1,j]$'\0'
parent+=/$dir
done
delim=${POWERLEVEL9K_SHORTEN_DELIMITER-'*'}
;;
truncate_with_folder_marker)
local pat=${POWERLEVEL9K_SHORTEN_FOLDER_MARKER-.shorten_folder_marker}

Loading…
Cancel
Save