tide/functions/_tide_decolor.fish

3 lines
139 B
Fish
Raw Normal View History

2020-05-20 20:05:33 +03:00
function _tide_decolor -a text
2020-07-21 00:11:59 +03:00
string replace --all $_tide_color_normal '' "$text" | string replace --all --regex '\e\[[0-9;]*m' ''
2020-05-09 01:32:58 +03:00
end