command tree -C "$@" | less -S
}
+# Modern Groff versions (at least on Debian) don't support LESS_TERMCAP_* to
+# color man pages, set GROFF_NO_SGR as workaround. Also set LANG to C so that
+# hyphens are not replaced with unicode making it impossible to search for
+# options containg "-" or "--" in many man pages.
+man() {
+ GROFF_NO_SGR=1 LANG=C command man "$@"
+}
+
# Better viewer for info pages .. just pipe everything into less.
info() {
command info "$@" 2>/dev/null | less
export PAGER
escape=`printf '\033'`
-# Color man pages viewed with less, thanks to [1].
+# Color man pages viewed with less, thanks to [1]. Modern Groff versions (at
+# least in Debian) also need GROFF_NO_SGR=1 for this to work.
#
# [1]: http://nion.modprobe.de/blog/archives/572-less-colors-for-man-pages.html
#