zsh: don't cause errors if tput
is not available
This commit is contained in:
parent
ebda8d4fa2
commit
6cabb10b31
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ have() {
|
||||||
# Make man pages pretty, but only if $TERM is set because otherwise `tput`
|
# Make man pages pretty, but only if $TERM is set because otherwise `tput`
|
||||||
# would report errors (e.g., when running a command via SSH without allocating
|
# would report errors (e.g., when running a command via SSH without allocating
|
||||||
# a pty $TERM is not set).
|
# a pty $TERM is not set).
|
||||||
[ -n "$TERM" ] && {
|
have tput && [ -n "$TERM" ] && {
|
||||||
rst="$(tput sgr0)"
|
rst="$(tput sgr0)"
|
||||||
export LESS_TERMCAP_md="$(printf '%s\n' 'setaf 3' | tput -S)"
|
export LESS_TERMCAP_md="$(printf '%s\n' 'setaf 3' | tput -S)"
|
||||||
export LESS_TERMCAP_mb="$LESS_TERMCAP_md"
|
export LESS_TERMCAP_mb="$LESS_TERMCAP_md"
|
||||||
|
|
Loading…
Add table
Reference in a new issue