On Thursday 21 April 2005 06:54 pm, Petr Baudis wrote:

> Duh. And they say "Where possible terminfo is consulted to find the
> string to use." in their manual page. :/
> 
> > gitlog.sh: 6d24d857fb6c2f7e810954adaca1990599906f07
> > --- a/gitlog.sh
> > +++ b/gitlog.sh
> > @@ -11,11 +11,11 @@
> >  
> >  if [ "$1" = "-c" ]; then
> >     shift
> > -   colheader=$(setterm -foreground green)
> > -   colauthor=$(setterm -foreground cyan)
> > -   colcommitter=$(setterm -foreground magenta)
> > -   colsignoff=$(setterm -foreground yellow)
> > -   coldefault=$(setterm -foreground default)
> > +   colheader="$(tput setaf 2)"
> > +   colauthor="$(tput setaf 6)"
> > +   colcommitter="$(tput setaf 5)"
> > +   colsignoff="$(tput setaf 3)"
> > +   coldefault="$(tput op)"
> >  else
> >     colheader=
> >     colauthor=
> 
> Please at least stick the colors in comments after the assignment.
> Not everyone knows ANSI color codes off-hand (the last thing I've
> memorized were BIOS color codes in the distant DOS days).
> 

I like the color idea, but since many people have their own idea
of what colors are appropriate, etc (I use a dark background, and
the magenta is painful), perhaps we could have a LOG_COLORS
file, similar in concept (but more readable) to the /etc/DIR_COLORS
file.  Great work !

Steven
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to