tide/functions/_tide_right_prompt.fish
2020-06-10 09:18:15 -07:00

36 lines
1009 B
Fish

function _tide_right_prompt
set -l splitText (_fetch_right_prompt_items | string split '\n')
set -l printAtEndedRightPromptHeight (count $splitText)
for thing in $splitText[1..-2]
_print_at_end $thing
end
if test $printAtEndedRightPromptHeight -eq $_tide_left_prompt_height
set -g _tide_right_prompt_fish $splitText[-1]
set printAtEndedRightPromptHeight (math $printAtEndedRightPromptHeight-1)
else
_print_at_end $splitText[-1]
set -g _tide_right_prompt_fish ''
end
_cursor_up $printAtEndedRightPromptHeight
end
function fish_right_prompt
printf '%s' $_tide_right_prompt_fish
end
function _fetch_right_prompt_items
printf '%s' ' '
for item in _tide_item_{$tide_right_prompt_items}
printf '%s' ($item)$_tide_color_normal
end
end
function _print_at_end -a text
set -l startLocation (math $COLUMNS -(_tide_decolor $text | string length))
_cursor_right $startLocation
printf '%s%b' $text '\v\r'
end