From fab0f7313b2d5de464c302774406c0c48aaade69 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Mon, 9 Oct 2017 19:03:22 +0100 Subject: [PATCH] Add option to explicitly specify $VISUAL in .bash_host as some systems need it apparently --- .bash_host | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.bash_host b/.bash_host index 46329a2..dfaa609 100644 --- a/.bash_host +++ b/.bash_host @@ -37,6 +37,11 @@ NO_HH=false; # with extreme caution! FORCE_HH=false; +# The preferred CLI text editor. Not needed on most systems due to sensible-editor, +# but needed on arch-like systems apparently. +#export VISUAL="nano"; + + which hh 1>/dev/null 2>&1; if [[ "$?" -ne "0" ]]; then NO_HH=true;