diff options
author | Dominik Ritter <dritter03@googlemail.com> | 2017-02-03 22:21:53 +0300 |
---|---|---|
committer | Dominik Ritter <dritter03@googlemail.com> | 2017-02-03 22:21:53 +0300 |
commit | 268c3247c95eb11c92054465404e37d8877c0f5d (patch) | |
tree | 056fb94de25957f7eab6109bb0b1e5c43d7cb77b /powerlevel9k.zsh-theme | |
parent | b379f03f148d99a0da8c8eb200f17b3007a87e47 (diff) |
Do path expansion at first
Diffstat (limited to 'powerlevel9k.zsh-theme')
-rwxr-xr-x | powerlevel9k.zsh-theme | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/powerlevel9k.zsh-theme b/powerlevel9k.zsh-theme index 3010790e..3e529b3b 100755 --- a/powerlevel9k.zsh-theme +++ b/powerlevel9k.zsh-theme @@ -570,7 +570,7 @@ prompt_custom() { # Dir: current working directory set_default POWERLEVEL9K_DIR_PATH_SEPARATOR "/" prompt_dir() { - local current_path='%~' + local current_path="$(print -P "%~")" if [[ -n "$POWERLEVEL9K_SHORTEN_DIR_LENGTH" ]]; then set_default POWERLEVEL9K_SHORTEN_DELIMITER $'\U2026' @@ -621,7 +621,7 @@ prompt_dir() { fi if [[ "${POWERLEVEL9K_DIR_PATH_SEPARATOR}" != "/" ]]; then - current_path=$(print -P "${current_path}" | sed "s/\//${POWERLEVEL9K_DIR_PATH_SEPARATOR}/g") + current_path="$( echo "${current_path}" | sed "s/\//${POWERLEVEL9K_DIR_PATH_SEPARATOR}/g")" fi typeset -AH dir_states |