mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-14 17:10:07 +00:00
Fixed accidentally truncating current folder too
This commit is contained in:
parent
110f54f7e2
commit
ad4b284e56
1 changed files with 3 additions and 3 deletions
|
@ -725,7 +725,7 @@ set_default POWERLEVEL9K_DIR_PATH_HIGHLIGHT_BOLD false
|
||||||
prompt_dir() {
|
prompt_dir() {
|
||||||
local current_dir="$(print -P "%~")"
|
local current_dir="$(print -P "%~")"
|
||||||
local paths
|
local paths
|
||||||
[[ current_dir != "/" ]] && paths=(${(s:/:)current_dir}) || paths[0] = "/"
|
[[ current_dir != "/" ]] && paths=(${(s:/:)current_dir})
|
||||||
local cur_path cur_short_path directory dir_length cur_dir
|
local cur_path cur_short_path directory dir_length cur_dir
|
||||||
|
|
||||||
if [[ -n "$POWERLEVEL9K_SHORTEN_DIR_LENGTH" || "$POWERLEVEL9K_SHORTEN_STRATEGY" == "truncate_with_folder_marker" ]]; then
|
if [[ -n "$POWERLEVEL9K_SHORTEN_DIR_LENGTH" || "$POWERLEVEL9K_SHORTEN_STRATEGY" == "truncate_with_folder_marker" ]]; then
|
||||||
|
@ -741,7 +741,7 @@ prompt_dir() {
|
||||||
do
|
do
|
||||||
cur_dir=$directory
|
cur_dir=$directory
|
||||||
dir_length=${#cur_dir}
|
dir_length=${#cur_dir}
|
||||||
if (( $dir_length > $max_length )); then
|
if (( $dir_length > $max_length )) && [[ $cur_dir != $paths[${#paths}] ]]; then
|
||||||
last_pos=$(( $dir_length - $POWERLEVEL9K_SHORTEN_DIR_LENGTH ))
|
last_pos=$(( $dir_length - $POWERLEVEL9K_SHORTEN_DIR_LENGTH ))
|
||||||
cur_dir=${cur_dir:0:$POWERLEVEL9K_SHORTEN_DIR_LENGTH}$POWERLEVEL9K_SHORTEN_DELIMITER${cur_dir:$last_pos:$dir_length}
|
cur_dir=${cur_dir:0:$POWERLEVEL9K_SHORTEN_DIR_LENGTH}$POWERLEVEL9K_SHORTEN_DELIMITER${cur_dir:$last_pos:$dir_length}
|
||||||
fi
|
fi
|
||||||
|
@ -758,7 +758,7 @@ prompt_dir() {
|
||||||
for directory in ${paths[@]}
|
for directory in ${paths[@]}
|
||||||
do
|
do
|
||||||
cur_dir=$directory
|
cur_dir=$directory
|
||||||
if (( ${#cur_dir} > $POWERLEVEL9K_SHORTEN_DIR_LENGTH )); then
|
if (( ${#cur_dir} > $POWERLEVEL9K_SHORTEN_DIR_LENGTH && [[ $cur_dir != $paths[${#paths}] ]]; then
|
||||||
cur_dir=${cur_dir:0:$POWERLEVEL9K_SHORTEN_DIR_LENGTH}$POWERLEVEL9K_SHORTEN_DELIMITER
|
cur_dir=${cur_dir:0:$POWERLEVEL9K_SHORTEN_DIR_LENGTH}$POWERLEVEL9K_SHORTEN_DELIMITER
|
||||||
fi
|
fi
|
||||||
cur_short_path+="$cur_dir/"
|
cur_short_path+="$cur_dir/"
|
||||||
|
|
Loading…
Reference in a new issue