* Project idea: github-like diff view @ 2014-04-20 9:58 Duy Nguyen 2014-04-20 14:46 ` Jeff King 0 siblings, 1 reply; 5+ messages in thread From: Duy Nguyen @ 2014-04-20 9:58 UTC (permalink / raw) To: Git Mailing List When you view a commit from github, it shows extra info besides standard unified diff format: - the column number of each line (useful for jumping directly to that line without manual counting from @@ line) - --color-words within unified diff format, using background color to show what part of the line has changed. This is only enabled for 1-line changes. These can be implemented and seem useful, especially the --color-words item. Once you get familiar with diff.c I suppose you could implement both in a week (the first probably takes just a day). -- Duy ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Project idea: github-like diff view 2014-04-20 9:58 Project idea: github-like diff view Duy Nguyen @ 2014-04-20 14:46 ` Jeff King 2014-04-22 9:59 ` Duy Nguyen 0 siblings, 1 reply; 5+ messages in thread From: Jeff King @ 2014-04-20 14:46 UTC (permalink / raw) To: Duy Nguyen; +Cc: Git Mailing List On Sun, Apr 20, 2014 at 04:58:28PM +0700, Duy Nguyen wrote: > - --color-words within unified diff format, using background color to > show what part of the line has changed. This is only enabled for > 1-line changes. See contrib/diff-highlight. -Peff ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Project idea: github-like diff view 2014-04-20 14:46 ` Jeff King @ 2014-04-22 9:59 ` Duy Nguyen 2014-04-22 15:59 ` Jeff King 2014-04-22 16:11 ` Felipe Contreras 0 siblings, 2 replies; 5+ messages in thread From: Duy Nguyen @ 2014-04-22 9:59 UTC (permalink / raw) To: Jeff King; +Cc: Git Mailing List On Sun, Apr 20, 2014 at 9:46 PM, Jeff King <peff@peff.net> wrote: > On Sun, Apr 20, 2014 at 04:58:28PM +0700, Duy Nguyen wrote: > >> - --color-words within unified diff format, using background color to >> show what part of the line has changed. This is only enabled for >> 1-line changes. > > See contrib/diff-highlight. Thanks. I'd rather have it built in core git still. I'll try to see if I can rewrite it in C. Else, any objection to promote it to a core helper and setup pager automatically? We can have a config key to turn it off, but if git diff is colored, then it could be on by default. -- Duy ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Project idea: github-like diff view 2014-04-22 9:59 ` Duy Nguyen @ 2014-04-22 15:59 ` Jeff King 2014-04-22 16:11 ` Felipe Contreras 1 sibling, 0 replies; 5+ messages in thread From: Jeff King @ 2014-04-22 15:59 UTC (permalink / raw) To: Duy Nguyen; +Cc: Git Mailing List On Tue, Apr 22, 2014 at 04:59:17PM +0700, Duy Nguyen wrote: > On Sun, Apr 20, 2014 at 9:46 PM, Jeff King <peff@peff.net> wrote: > > On Sun, Apr 20, 2014 at 04:58:28PM +0700, Duy Nguyen wrote: > > > >> - --color-words within unified diff format, using background color to > >> show what part of the line has changed. This is only enabled for > >> 1-line changes. > > > > See contrib/diff-highlight. > > Thanks. I'd rather have it built in core git still. I'll try to see if > I can rewrite it in C. Else, any objection to promote it to a core > helper and setup pager automatically? We can have a config key to turn > it off, but if git diff is colored, then it could be on by default. If you are going to write it as part of git, it would be interesting to try using a real word-diff to find the inter-line changes, instead of the "front and back match" heuristic that the script uses. I know there are some cases that would look better, like: -foo(buf, len); +foo(obj->buf, obj->len); but I suspect some cases would also look worse. It would be interesting to experiment with, though. -Peff ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Project idea: github-like diff view 2014-04-22 9:59 ` Duy Nguyen 2014-04-22 15:59 ` Jeff King @ 2014-04-22 16:11 ` Felipe Contreras 1 sibling, 0 replies; 5+ messages in thread From: Felipe Contreras @ 2014-04-22 16:11 UTC (permalink / raw) To: Duy Nguyen, Jeff King; +Cc: Git Mailing List Duy Nguyen wrote: > On Sun, Apr 20, 2014 at 9:46 PM, Jeff King <peff@peff.net> wrote: > > On Sun, Apr 20, 2014 at 04:58:28PM +0700, Duy Nguyen wrote: > > > >> - --color-words within unified diff format, using background color to > >> show what part of the line has changed. This is only enabled for > >> 1-line changes. > > > > See contrib/diff-highlight. > > Thanks. I'd rather have it built in core git still. I'll try to see if > I can rewrite it in C. Else, any objection to promote it to a core > helper and setup pager automatically? We can have a config key to turn > it off, but if git diff is colored, then it could be on by default. Having so many tools that should be rewritten to C, I don't see why anybody should spent time rewriting scripts that are not part of the core and for the most part do their job already. -- Felipe Contreras ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-04-22 16:22 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2014-04-20 9:58 Project idea: github-like diff view Duy Nguyen 2014-04-20 14:46 ` Jeff King 2014-04-22 9:59 ` Duy Nguyen 2014-04-22 15:59 ` Jeff King 2014-04-22 16:11 ` Felipe Contreras
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).