mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-12 08:10:07 +00:00
Replace call to basename with ZSH internals #1128
This commit is contained in:
parent
8b4bed99df
commit
081000c49e
1 changed files with 1 additions and 1 deletions
|
@ -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'
|
||||
}
|
||||
|
||||
################################################################
|
||||
|
|
Loading…
Reference in a new issue