We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cat table A B C 1 2 <nix> 3 2 <HEWRE> cat table | t -s "\s+" 2 A(1) B(2) C(3) 1 2 <nix> 3 <bg=lightGreen;fg=black>2</> <HEWRE>
The 2 in the first line is colorized, the one in the 2nd line not. However it works, if we remove column 3:
2
cat table | t -s "\s+" 2 -c 1,2 A(1) B(2) 1 2 3 2
The text was updated successfully, but these errors were encountered:
This is an issue in gookit/color#52, an invalid regexp modifier is being used (s instead of m).
Sorry, something went wrong.
Commit 001021d adds a workaround (an ugly one, that is!)
fixed #5, colorization now always works as expected
417faf3
No branches or pull requests
The
2
in the first line is colorized, the one in the 2nd line not. However it works, if we remove column 3:The text was updated successfully, but these errors were encountered: