|
|
@ -803,7 +803,7 @@ prompt_dir() {
|
|
|
|
# if we are not in "~" or "/", split the paths into an array and exclude "~"
|
|
|
|
# if we are not in "~" or "/", split the paths into an array and exclude "~"
|
|
|
|
(( ${#current_path} > 1 )) && paths=(${(s:/:)${current_path//"~\/"/}}) || paths=()
|
|
|
|
(( ${#current_path} > 1 )) && paths=(${(s:/:)${current_path//"~\/"/}}) || paths=()
|
|
|
|
# only run the code if SHORTEN_DIR_LENGTH is set, or we are using the two strategies that don't rely on it.
|
|
|
|
# only run the code if SHORTEN_DIR_LENGTH is set, or we are using the two strategies that don't rely on it.
|
|
|
|
if [[ -n "$POWERLEVEL9K_SHORTEN_DIR_LENGTH" || "$POWERLEVEL9K_SHORTEN_STRATEGY" == "truncate_with_folder_marker" || "$POWERLEVEL9K_SHORTEN_STRATEGY" == "truncate_to_last" ]]; then
|
|
|
|
if [[ -n "$POWERLEVEL9K_SHORTEN_DIR_LENGTH" || "$POWERLEVEL9K_SHORTEN_STRATEGY" == "truncate_with_folder_marker" || "$POWERLEVEL9K_SHORTEN_STRATEGY" == "truncate_to_last" || "$POWERLEVEL9K_SHORTEN_STRATEGY" == "truncate_with_package_name" ]]; then
|
|
|
|
set_default POWERLEVEL9K_SHORTEN_DELIMITER "\u2026"
|
|
|
|
set_default POWERLEVEL9K_SHORTEN_DELIMITER "\u2026"
|
|
|
|
# convert delimiter from unicode to literal character, so that we can get the correct length later
|
|
|
|
# convert delimiter from unicode to literal character, so that we can get the correct length later
|
|
|
|
local delim=$(echo -n $POWERLEVEL9K_SHORTEN_DELIMITER)
|
|
|
|
local delim=$(echo -n $POWERLEVEL9K_SHORTEN_DELIMITER)
|
|
|
|