tide/functions/_tide_fish_colorize.fish

8 lines
151 B
Fish
Raw Normal View History

2023-10-04 07:01:12 +03:00
function _tide_fish_colorize
if command -q fish_indent
echo -ns "$argv" | fish_indent --ansi
else
echo -ns "$argv"
end
end