aboutsummaryrefslogtreecommitdiffhomepage
path: root/.config/fish/functions/256colors.fish
blob: 822447aa1ac8008d8c0e0b2da2b20bcf204f1617 (plain)
1
2
3
4
5
function 256colors
    for code in (seq 0 255)
        echo -e '\e[38;05;'$code'm '(printf '%3d' $code)': Test'
    end
end