Add termcap reverse video comment info

What is referred to as "reverse video" is also known as "standout", so
the comment indicating what it is should mention both names.
master
Jordan Atwood 2 years ago
parent 620de485a6
commit 8a606687c6
Signed by: nightfirecat
GPG Key ID: 615A619C2D73A6DF
  1. 4
      src/.bash_profile

@ -50,10 +50,10 @@ if hash less >/dev/null 2>&1; then
# Sourced from: https://unix.stackexchange.com/a/329092/136537
export LESS_TERMCAP_mb=$'\e[1;31m' # begin blink
export LESS_TERMCAP_md=$'\e[1;33m' # begin bold
export LESS_TERMCAP_so=$'\e[01;44;37m' # begin reverse video
export LESS_TERMCAP_so=$'\e[01;44;37m' # begin reverse video (aka standout)
export LESS_TERMCAP_us=$'\e[01;37m' # begin underline
export LESS_TERMCAP_me=$'\e[0m' # reset bold/blink
export LESS_TERMCAP_se=$'\e[0m' # reset reverse video
export LESS_TERMCAP_se=$'\e[0m' # reset reverse video (aka standout)
export LESS_TERMCAP_ue=$'\e[0m' # reset underline
export GROFF_NO_SGR=1 # for konsole and gnome-terminal
fi

Loading…
Cancel
Save