tide/functions/_tide_item_prompt_char.fish

8 lines
231 B
Fish
Raw Normal View History

2020-05-20 20:05:33 +03:00
function _tide_item_prompt_char
2020-06-06 21:57:43 +03:00
if test $_tide_last_status -eq 0
2020-05-19 21:01:01 +03:00
set_color $tide_prompt_char_success_color
2020-05-15 07:53:37 +03:00
else
2020-05-19 21:01:01 +03:00
set_color $tide_prompt_char_failure_color
2020-05-15 07:53:37 +03:00
end
2020-05-19 21:01:01 +03:00
printf '%s ' "$tide_prompt_char_icon"
2020-05-15 07:53:37 +03:00
end