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
I was able to use GIT_PAGER=diffr but then its not actually paging. Would be cool to see some examples of how to do this.
GIT_PAGER=diffr
The text was updated successfully, but these errors were encountered:
@jedahan are you perhaps looking for this?
I prefer setting configs via the command line than by editing the gitconfig file, so here's how I did it in my experiments:
git config --global core.pager 'diffr | less -R'
or, to use something more elaborate:
git config --global core.pager 'diffr --colors refine-removed:foreground:black:nobold --colors refine-added:foreground:black:nobold | less -RXF'
I agree that having examples like these in the README would be helpful.
Sorry, something went wrong.
See also #41 and #62.
I am blind; yes that works, thank you.
No branches or pull requests
I was able to use
GIT_PAGER=diffr
but then its not actually paging. Would be cool to see some examples of how to do this.The text was updated successfully, but these errors were encountered: