tide/functions/_tide_count_left_prompt_height.fish

4 lines
234 B
Fish
Raw Normal View History

2020-07-21 00:11:59 +03:00
function _tide_count_left_prompt_height --on-variable tide_left_prompt_items
set -l numberOfNewlines (count (string match --all 'newline' $tide_left_prompt_items))
2020-06-06 20:40:14 +03:00
set -g _tide_left_prompt_height (math 1+$numberOfNewlines)
2020-05-19 06:03:25 +03:00
end