-
Notifications
You must be signed in to change notification settings - Fork 627
New issue
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
color-words support #47
Comments
While looking at issue #26, I have been looking into adding support for --word-diff=porcelain as a way to provide side-by-side diff support. AFAIK, the parsing of the word diff can be shared, but will require different rendering methods. So yeah, I agree that it will require some work to get proper highlighting. For example, the line->data member will probably have to become a struct of line boxes on which we can attach color and length information. Since the diff view shares a lot of code with the pager and stage view it probably makes sense to also use this line box struct for all the current 'pager-based' views. |
+1 --color-words |
Yes, great goal! |
Would also be great if this supported --word-regex as well. It's sometimes nice to do a character diff. This would be a handy toggle setting too. Line Diff -> Word Diff -> Character Diff |
Okay, I got ahead of myself. After learning a bit more. Porcelain support looks like it would be great. Github seems to have this dialed in, so hopefully using something like they do would be helpful :) |
Support for word-diff would be just awesome! |
+1 for this feature. In the meantime I helped myself with an external command to have easy access to the output from within tig.
|
+1 --color-words |
+1, this would make diffs much easier! |
+1 |
2 similar comments
+1 |
+1 |
Any news on this? It's been open for more than four years now ;-) |
+1 |
attempted exporting +1 |
+1 very useful. Why one should leave tig to get colored diff (with options)? |
+1 for this feature I've just discovered tig but without |
Any improvement in this feature? |
If I'm not mistaken, it is implemented in tig 2.5.5. I added this to my tigrc:
and it works like a charm when pressing |
I don't think you can argue that it's git's fault when git has a color mode for the word diff. I, and I would assume most people, would like this way to display it, not the plain way. |
Maybe the selected word-diff mode should be configurable in tig then. Plain mode is still useful for example if the terminal has no color support. |
Currently, tig has no support for color-words in diffs. In fact, starting tig wit the --color-words option fails with "No revisions match the given argument" (which is quite misleading as error message).
This should probably be consiered a long-term TODO, as it requires some heavy-duty re-engineering of the diff view, especially with respect to highlighting. Also, color-word support would require massaging the input parameters, since the word-diff option should always be turned into 'porcelain'.
The text was updated successfully, but these errors were encountered: