From 8a606687c68a5dffd79abf0b79efbf989f399e28 Mon Sep 17 00:00:00 2001 From: Jordan Atwood Date: Wed, 21 Dec 2022 23:12:22 -0800 Subject: [PATCH] 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. --- src/.bash_profile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/.bash_profile b/src/.bash_profile index 8c143e9..69c3be6 100755 --- a/src/.bash_profile +++ b/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