mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2026-09-18 08:20:10 +00:00
Fix bug when truncate root was set to direct subfolder of home or root
This commit is contained in:
committed by
Dominik Ritter
parent
ebf808c533
commit
5cc2d51b58
@@ -615,7 +615,7 @@ prompt_dir() {
|
||||
dir_truncate_root=$(upsearch $POWERLEVEL9K_ROOT_MARKER_FILE)
|
||||
zero='%([BSUbfksu]|([FB]|){*})'
|
||||
|
||||
if [[ "$dir_truncate_root" == "/" || "$dir_truncate_root" == "$HOME" ]]; then
|
||||
if [[ "$dir_truncate_root" == "/" || "$dir_truncate_root" == "$HOME" || "${dir_truncate_root%/*}" == "$HOME" || ${dir_truncate_root%/*} == "/" ]]; then
|
||||
current_path='%~'
|
||||
elif [[ "$dir_truncate_root" == "$HOME"* ]]; then
|
||||
current_path="~/$POWERLEVEL9K_SHORTEN_DELIMITER/${dir_truncate_root##*/}${PWD:${#${(S%%)dir_truncate_root//$~zero/}}}"
|
||||
|
||||
Reference in New Issue
Block a user