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

Replace call to basename with ZSH internals #1128

This commit is contained in:
Dominik Ritter 2019-01-23 22:47:10 +01:00
parent 8b4bed99df
commit 081000c49e

View file

@ -1652,7 +1652,7 @@ prompt_virtualenv() {
# Early exit; $virtualenv_path must always be set.
[[ -z "$virtualenv_path" ]] && return
"$1_prompt_segment" "$0" "$2" "blue" "$DEFAULT_COLOR" "$(basename "$virtualenv_path")" 'PYTHON_ICON'
"$1_prompt_segment" "$0" "$2" "blue" "$DEFAULT_COLOR" "${virtualenv_path:t}" 'PYTHON_ICON'
}
################################################################