mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-16 17:50:09 +00:00
Updated test for trunc_to_unique
Instead of testing for number of folders, now only tests if string is longer than 1 character.
This commit is contained in:
parent
2bd3e0f67e
commit
90d0fb1c32
1 changed files with 4 additions and 4 deletions
|
@ -725,7 +725,7 @@ set_default POWERLEVEL9K_DIR_PATH_HIGHLIGHT_BOLD false
|
||||||
prompt_dir() {
|
prompt_dir() {
|
||||||
local current_path="$(print -P '%~')"
|
local current_path="$(print -P '%~')"
|
||||||
local paths directory test_dir test_dir_length trunc_path threshhold
|
local paths directory test_dir test_dir_length trunc_path threshhold
|
||||||
(( ${#current_path} > 1 )) && num_paths=(${(s:/:)${current_path//"~\/"/}}) || paths=() # only split if not root/home folder
|
(( ${#current_path} > 1 )) && num_paths=(${(s:/:)${current_path//"~\/"/}}) || num_paths=() # only split if not root/home folder
|
||||||
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
|
||||||
set_default POWERLEVEL9K_SHORTEN_DELIMITER "\u2026"
|
set_default POWERLEVEL9K_SHORTEN_DELIMITER "\u2026"
|
||||||
local delim=$(echo -n $POWERLEVEL9K_SHORTEN_DELIMITER) # convert delimiter from unicode to literal character
|
local delim=$(echo -n $POWERLEVEL9K_SHORTEN_DELIMITER) # convert delimiter from unicode to literal character
|
||||||
|
@ -818,7 +818,7 @@ prompt_dir() {
|
||||||
truncate_to_unique)
|
truncate_to_unique)
|
||||||
# for each parent path component find the shortest unique beginning
|
# for each parent path component find the shortest unique beginning
|
||||||
# characters sequence. Source: https://stackoverflow.com/a/45336078
|
# characters sequence. Source: https://stackoverflow.com/a/45336078
|
||||||
if (( ${#num_paths} > 0 )); then # root is an exception and won't have paths
|
if (( ${#current_path} > 1 )); then # root and home are exceptions and won't have paths
|
||||||
local matching
|
local matching
|
||||||
local cur_path='/'
|
local cur_path='/'
|
||||||
[[ $current_path != "~"* ]] && trunc_path='/' || trunc_path=''
|
[[ $current_path != "~"* ]] && trunc_path='/' || trunc_path=''
|
||||||
|
@ -860,9 +860,9 @@ prompt_dir() {
|
||||||
local current_state="DEFAULT"
|
local current_state="DEFAULT"
|
||||||
if [[ "${POWERLEVEL9K_DIR_SHOW_WRITABLE}" == true && ! -w "$PWD" ]]; then
|
if [[ "${POWERLEVEL9K_DIR_SHOW_WRITABLE}" == true && ! -w "$PWD" ]]; then
|
||||||
current_state="NOT_WRITABLE"
|
current_state="NOT_WRITABLE"
|
||||||
elif [[ $current_dir == '~' ]]; then
|
elif [[ $current_path == '~' ]]; then
|
||||||
current_state="HOME"
|
current_state="HOME"
|
||||||
elif [[ $current_dir == '~'* ]]; then
|
elif [[ $current_path == '~'* ]]; then
|
||||||
current_state="HOME_SUBFOLDER"
|
current_state="HOME_SUBFOLDER"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue