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

work around bugs in WSL where it /proc/pid/cwd reports an alias drive

This commit is contained in:
Roman Perepelitsa 2022-01-04 12:05:05 +01:00
parent 7354688123
commit 3d3b24c419

View file

@ -200,7 +200,11 @@ function _p9k_read_word() {
}
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}:-.}
case $_p9k__cwd in