mirror of
https://github.com/IlanCosman/tide.git
synced 2024-11-27 13:18:02 +03:00
42 lines
1.1 KiB
Fish
42 lines
1.1 KiB
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}
|
|
set -l itemOutput ($item)
|
|
printf '%s' "$itemOutput"
|
|
|
|
set_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' $text
|
|
|
|
printf '%b' '\v'
|
|
printf '%b' '\r'
|
|
end |