Limit to whole folders, not just characters.

This commit is contained in:
Dominik Ritter 2015-06-07 01:48:02 +02:00
commit 891f5567fd
2 changed files with 5 additions and 5 deletions

View file

@ -319,9 +319,9 @@ prompt_context() {
# Dir: current working directory
prompt_dir() {
local current_path='%~'
if [[ -n "$POWERLEVEL9K_SHORTEN_PWD_LENGTH" ]]; then
# shorten path to $POWERLEVEL9K_SHORTEN_PWD_LENGTH characters
local current_path="%${POWERLEVEL9K_SHORTEN_PWD_LENGTH}<..<%~%<<"
if [[ -n "$POWERLEVEL9K_SHORTEN_DIR_LENGTH" ]]; then
# shorten path to $POWERLEVEL9K_SHORTEN_DIR_LENGTH
current_path="%$((POWERLEVEL9K_SHORTEN_DIR_LENGTH+1))(c:.../:)%${POWERLEVEL9K_SHORTEN_DIR_LENGTH}c"
fi
$1_prompt_segment $0 blue $DEFAULT_COLOR $current_path