This repository has been archived on 2020-09-21. You can view files and clone it, but cannot push or open issues or pull requests.
zim/modules/prompt/functions/short_pwd

14 lines
315 B
Plaintext
Raw Normal View History

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