tide/functions/_tide_decolor.fish
2020-07-20 14:11:59 -07:00

3 lines
139 B
Fish

function _tide_decolor -a text
string replace --all $_tide_color_normal '' "$text" | string replace --all --regex '\e\[[0-9;]*m' ''
end