mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 00:00:06 +00:00
work around bugs in WSL where it /proc/pid/cwd reports an alias drive
This commit is contained in:
parent
7354688123
commit
3d3b24c419
1 changed files with 5 additions and 1 deletions
|
@ -200,7 +200,11 @@ function _p9k_read_word() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function _p9k_fetch_cwd() {
|
function _p9k_fetch_cwd() {
|
||||||
_p9k__cwd=${${${:-.}:a}:-.}
|
if [[ $PWD == /* && $PWD -ef . ]]; then
|
||||||
|
_p9k__cwd=$PWD
|
||||||
|
else
|
||||||
|
_p9k__cwd=${${${:-.}:a}:-.}
|
||||||
|
fi
|
||||||
_p9k__cwd_a=${${_p9k__cwd:A}:-.}
|
_p9k__cwd_a=${${_p9k__cwd:A}:-.}
|
||||||
|
|
||||||
case $_p9k__cwd in
|
case $_p9k__cwd in
|
||||||
|
|
Loading…
Reference in a new issue