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
This is a feature request, not a bug. As a user, I desire to change the color, for human-factors, readability: https://stackoverflow.com/q/77714718/1223975
maybe something like:
export jq_int_color='yellow' export jq_bool_color='red' export jq_null_color='black'
The text was updated successfully, but these errors were encountered:
Not as fancy but it is possible to use JQ_COLORS to do this, see https://jqlang.github.io/jq/manual/#colors
JQ_COLORS
# default colors but int yellow, bools red, null dark grey JQ_COLORS="0;90:0;31:0;31:0;33:0;32:1;39:1;39:1;34" jq -n '123, true, null'
Sorry, something went wrong.
thanks
No branches or pull requests
This is a feature request, not a bug.
As a user, I desire to change the color, for human-factors, readability:
https://stackoverflow.com/q/77714718/1223975
maybe something like:
The text was updated successfully, but these errors were encountered: