tide/functions/_tide_print_item.fish

23 lines
786 B
Fish
Raw Normal View History

2021-04-23 23:58:28 +03:00
function _tide_print_item -a item
2022-05-30 20:34:53 +03:00
v=tide_"$item"_bg_color set -f item_bg_color $$v
2021-04-23 23:58:28 +03:00
2021-11-28 23:30:45 +03:00
if set -e add_prefix
2021-05-12 23:13:51 +03:00
set_color $item_bg_color -b normal
2022-05-30 20:34:53 +03:00
v=tide_"$_tide_side"_prompt_prefix echo -ns $$v
2021-10-01 20:52:44 +03:00
else if test "$item_bg_color" = "$prev_bg_color"
2022-05-30 20:34:53 +03:00
v=tide_"$_tide_side"_prompt_separator_same_color echo -ns $_tide_color_separator_same_color$$v
2021-10-15 04:09:55 +03:00
else if test $_tide_side = left
2021-10-01 20:52:44 +03:00
set_color $prev_bg_color -b $item_bg_color
2021-09-22 22:28:26 +03:00
echo -ns $tide_left_prompt_separator_diff_color
2021-04-23 23:58:28 +03:00
else
2021-10-01 20:52:44 +03:00
set_color $item_bg_color -b $prev_bg_color
2021-09-08 20:54:31 +03:00
echo -ns $tide_right_prompt_separator_diff_color
2021-04-23 23:58:28 +03:00
end
2022-05-30 20:34:53 +03:00
v=tide_"$item"_color set_color $$v -b $item_bg_color
2021-04-23 23:58:28 +03:00
2021-09-22 23:35:33 +03:00
echo -ns $_tide_pad $argv[2..] $_tide_pad
2021-04-23 23:58:28 +03:00
2021-10-01 20:52:44 +03:00
set -g prev_bg_color $item_bg_color
2021-04-23 23:58:28 +03:00
end