diff options
author | Ben Hilburn <bhilburn@gmail.com> | 2018-04-14 04:55:30 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-14 04:55:30 +0300 |
commit | 0d8bfb68f44769add9d035eb07acc191485e197c (patch) | |
tree | 6c252c3456f9a2397276c750d3bdcfbfa430ad4c /powerlevel9k.zsh-theme | |
parent | 83e32671020e5db5d93d925271175b636f88fbab (diff) | |
parent | d43f128c8673efd5f8c5b7c94525c16c25621d31 (diff) |
Merge pull request #773 from conradhaupt/fix_dir_nav
Fixed home abbreviation not being exclusive with circular navigation
Diffstat (limited to 'powerlevel9k.zsh-theme')
-rwxr-xr-x | powerlevel9k.zsh-theme | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/powerlevel9k.zsh-theme b/powerlevel9k.zsh-theme index 2255a04a..1d34f344 100755 --- a/powerlevel9k.zsh-theme +++ b/powerlevel9k.zsh-theme @@ -809,7 +809,9 @@ prompt_dir() { current_path="${cur_short_path: : -1}" ;; *) - current_path="$(print -P "%$((POWERLEVEL9K_SHORTEN_DIR_LENGTH+1))(c:$POWERLEVEL9K_SHORTEN_DELIMITER/:)%${POWERLEVEL9K_SHORTEN_DIR_LENGTH}c")" + if [[ $current_path != "~" ]]; then + current_path="$(print -P "%$((POWERLEVEL9K_SHORTEN_DIR_LENGTH+1))(c:$POWERLEVEL9K_SHORTEN_DELIMITER/:)%${POWERLEVEL9K_SHORTEN_DIR_LENGTH}c")" + fi ;; esac fi |