1
0
Fork 0
mirror of synced 2024-06-28 03:11:09 -04:00
zimfw/modules/prompt/functions/short_pwd
2016-01-05 04:15:13 -05:00

12 lines
279 B
Plaintext

# shortens the pwd for use in prompt
local current_dir="${PWD/#${HOME}/~}"
local return_dir='~'
# if we aren't in ~
if [[ ${current_dir} != '~' ]]; then
return_dir="${${${${(@j:/:M)${(@s:/:)current_dir}##.#?}:h}%/}//\%/%%}/${${current_dir:t}//\%/%%}"
fi
print ${return_dir}