tide/functions/_tide_pwd.fish
2020-08-29 15:38:18 -07:00

58 lines
2.2 KiB
Fish

function _tide_pwd --on-variable PWD --on-signal WINCH
set -l preMaxDirsSplitPwd (string replace $HOME '~' $PWD | string split '/')
set -l splitPwd $preMaxDirsSplitPwd[(math --scale=0 -$tide_pwd_max_dirs)..-1]
set -l pwd (string join '/' $splitPwd)
set -g _tide_git_dir (git rev-parse --show-toplevel 2>/dev/null) # Used for git_prompt item
set -l pwdMaxLength (math $COLUMNS -$tide_pwd_truncate_margin)
# Compute anchors
set -l tidePwdAnchors
if contains 'first' $tide_pwd_anchors
if test -n "$splitPwd[1]"
set -a tidePwdAnchors $splitPwd[1]
else
set -a tidePwdAnchors $splitPwd[2]
end
end
if contains 'last' $tide_pwd_anchors
set -a tidePwdAnchors $splitPwd[-1]
end
if contains 'git' $tide_pwd_anchors
set -a tidePwdAnchors (string split -r -m1 '/' "$_tide_git_dir")[2]
end
set -l colorDirs (set_color $tide_pwd_color_dirs)
set -g _tide_pwd_output $colorDirs$pwd
# Prepend icons
if not test -w $PWD
set _tide_pwd_output $colorDirs{$tide_pwd_unwritable_icon}' ' $_tide_pwd_output
else if test $PWD = $HOME
set _tide_pwd_output $colorDirs{$tide_pwd_home_icon}' ' $_tide_pwd_output
else
set _tide_pwd_output $colorDirs{$tide_pwd_dir_icon}' ' $_tide_pwd_output
end
set -l truncatedList '.' $splitPwd
for dir in $splitPwd
if contains $dir $tidePwdAnchors
set _tide_pwd_output (string replace $dir (set_color -o $tide_pwd_color_anchors)$dir(set_color normal -b $tide_pwd_bg_color) $_tide_pwd_output)
else if test (string length $pwd) -gt $pwdMaxLength
set -l dirTruncated $dir
set -l truncationLength 1
while contains $dirTruncated $truncatedList
set dirTruncated (string sub -l $truncationLength $dir)
set truncationLength (math $truncationLength+1)
end
set -a truncatedList $dirTruncated
set pwd (string replace $dir $dirTruncated $pwd)
set _tide_pwd_output (string replace $dir (set_color $tide_pwd_color_truncated_dirs)$dirTruncated $_tide_pwd_output)
end
end
set _tide_pwd_output (string replace --all '/' $colorDirs'/' $_tide_pwd_output)
end