Closed Masber closed 1 month ago
many terminal applications like vim, alacritty, bat allows the user to set a specific colorscheme to print commands output. Could ripgrep take the same approach using the --colors argument? something like:
--colors
Some examples:
set ripgrep to use gruvbox-dark colorscheme
rg --colors=colorscheme=gruvbox --colors=bg:dark
set ripgrep to use gruvbox-light colorscheme
rg --colors=colorscheme=gruvbox --colors=bg:light
or directly (without specifying background)
rg --colors=colorscheme=gruvbox-dark
thank you
I appreciate the suggestion, but this isn't something I want to maintain. ripgrep's use of colors are also way simpler than vim, alacritty or bat.
Describe your feature request
many terminal applications like vim, alacritty, bat allows the user to set a specific colorscheme to print commands output. Could ripgrep take the same approach using the
--colors
argument? something like:Some examples:
set ripgrep to use gruvbox-dark colorscheme
set ripgrep to use gruvbox-light colorscheme
or directly (without specifying background)
thank you