mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 00:00:06 +00:00
Fixed Issue with whitespaces in path.
This commit is contained in:
parent
87acc51aca
commit
6e931f6047
1 changed files with 3 additions and 0 deletions
|
@ -695,7 +695,10 @@ set_default POWERLEVEL9K_DIR_PATH_SEPARATOR "/"
|
|||
set_default POWERLEVEL9K_HOME_FOLDER_ABBREVIATION "~"
|
||||
set_default POWERLEVEL9K_DIR_SHOW_WRITABLE false
|
||||
prompt_dir() {
|
||||
local tmp=$IFS
|
||||
local IFS=""
|
||||
local current_path=$(pwd | sed -e "s,^$HOME,~,")
|
||||
local IFS=$tmp
|
||||
if [[ -n "$POWERLEVEL9K_SHORTEN_DIR_LENGTH" || "$POWERLEVEL9K_SHORTEN_STRATEGY" == "truncate_with_folder_marker" ]]; then
|
||||
set_default POWERLEVEL9K_SHORTEN_DELIMITER $'\U2026'
|
||||
|
||||
|
|
Loading…
Reference in a new issue