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
kubecolor get pods -A | fzf --ansi
man fzf
fzf --version
0.51.0
I have this:
expect color output of kubecolor preserved but in fact, the color is lost.
kubecolor
The text was updated successfully, but these errors were encountered:
Usually, there is an extra option to retain the escape sequences when piped into another command.
See: kubecolor/kubecolor - Dynamic tty support
KUBECOLOR_FORCE_COLORS=true kubecolor ... | fzf ... # or kubecolor --force-colors ... | fzf ...
# Enables colors automatically when outputting to the terminal; otherwise, it disables them. command grep --color=auto '^foo' /usr/share/dict/words command grep --color=auto '^foo' /usr/share/dict/words | fzf # vs # Always enables colorized output. command grep --color=always '^foo' /usr/share/dict/words | fzf
Sorry, something went wrong.
No branches or pull requests
Checklist
man fzf
)Output of
fzf --version
0.51.0
OS
Shell
Problem / Steps to reproduce
I have this:
expect color output of
kubecolor
preserved but in fact, the color is lost.The text was updated successfully, but these errors were encountered: