1
0
Fork 0
mirror of https://github.com/romkatv/powerlevel10k.git synced 2024-09-21 11:00:08 +00:00

Shorten dir path, if POWERLEVEL9K_SHORTEN_PWD_LENGTH is set.

This commit is contained in:
Dominik Ritter 2015-06-07 01:06:26 +02:00
parent f7cb946898
commit 291bcddd10

View file

@ -318,7 +318,13 @@ prompt_context() {
# Dir: current working directory
prompt_dir() {
$1_prompt_segment $0 blue $DEFAULT_COLOR '%~'
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}<..<%~%<<"
fi
$1_prompt_segment $0 blue $DEFAULT_COLOR $current_path
}
# Command number (in local history)