Johannes Schindelin <Johannes.Schindelin@xxxxxx> wrote: > On Sun, 17 Jul 2016, norm@xxxxxxx wrote: > > 'git diff' outputs escape characters which clutter my terminal. Yes, I > > can sed them out, but then why are they there? > > Those are most likely the ANSI sequences to add color. Can you call Git > with the --no-color option and see whether the escape characters go away? Norm: do you have PAGER=more set by any chance? Perhaps changing it to "less" will allow you to preserve colors. I saw a similar or identical problem during my vacation in FreeBSD-land. Perhaps the out-of-the-box experience can be improved: -----8<----- Subject: [PATCH] pager: disable color when pager is "more" more(1) traditionally cannot handle colors. On FreeBSD 10.3, a new user ~/.profile explicitly sets PAGER=more, but does not configure it to display colors, leading to a bad out-of-the-box experience with escape sequences being seen by the user. In the FreeBSD 10.3 case, /usr/bin/more is actually a hardlink to /usr/bin/less and capable of handling colors. While we could set MORE=FRX, this breaks other more(1) implementations, including the one provided by util-linux on common GNU/Linux systems. So take the safe route and assume anybody still using more(1) today can live with monochrome output, but acknowledge 'R' in the MORE environment variable if it was set by the user. Signed-off-by: Eric Wong <e@xxxxxxxxx> --- environment.c | 2 +- pager.c | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/environment.c b/environment.c index ca72464..cfb56fd 100644 --- a/environment.c +++ b/environment.c @@ -41,7 +41,7 @@ size_t packed_git_limit = DEFAULT_PACKED_GIT_LIMIT; size_t delta_base_cache_limit = 96 * 1024 * 1024; unsigned long big_file_threshold = 512 * 1024 * 1024; const char *pager_program; -int pager_use_color = 1; +int pager_use_color = -1; const char *editor_program; const char *askpass_program; const char *excludes_file; diff --git a/pager.c b/pager.c index 4bc0481..3110df4 100644 --- a/pager.c +++ b/pager.c @@ -80,6 +80,17 @@ void setup_pager(void) if (!pager) return; + if (pager_use_color < 0 && !strcmp(pager, "more")) { + const char *more = getenv("MORE"); + + /* + * MORE=R does not work everywhere, so we cannot set it, + * but we can respect it if set. + */ + if (!more || !strchr(more, 'R')) + pager_use_color = 0; + } + /* * force computing the width of the terminal before we redirect * the standard output to the pager. -- EW -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html