mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-12 08:10:07 +00:00
IFS Fix attemp
This commit is contained in:
parent
6e931f6047
commit
02fbaf2c4b
1 changed files with 2 additions and 2 deletions
|
@ -695,10 +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 tmp="$IFS"
|
||||
local IFS=""
|
||||
local current_path=$(pwd | sed -e "s,^$HOME,~,")
|
||||
local IFS=$tmp
|
||||
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