X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fcore%2Fvariables.sh;h=0628a4f1d017f197bfcc79bb579f652c7c030fb3;hb=d3325c84bb186cdb59a0b77ec95f85bf22d4392b;hp=7c552cbe65c3148fdf8285f72f9f9ccd60066132;hpb=fa564b855635d564db3b45a813e8900b095b876a;p=feisty_meow.git diff --git a/scripts/core/variables.sh b/scripts/core/variables.sh index 7c552cbe..0628a4f1 100644 --- a/scripts/core/variables.sh +++ b/scripts/core/variables.sh @@ -290,8 +290,8 @@ fi ############## -# pull in the custom overrides for feisty_meow scripts. this is done last, -# because we want to set everything up as expected, then let the user +# pull in the custom overrides for feisty_meow scripts. this is done almost +# last, because we want to set everything up as expected, then let the user # override individual variables and definitions. we also don't guard this # to avoid running it again, because we don't know what mix of functions and # aliases they want to define in there. @@ -306,3 +306,34 @@ for i in $FEISTY_MEOW_LOADING_DOCK/custom/*.sh; do source "$i" done +############## + +# a late breaking action is to set the editor, if we can. +# we will fallback to whatever we can find on the host. +export EDITOR +if [ -z "$EDITOR" ]; then + EDITOR="$(which bluefish)" +fi +if [ -z "$EDITOR" ]; then + EDITOR="$(which gvim)" + if [ ! -z "$EDITOR" ]; then + # if we found gvim, then add in the no forking flag. + EDITOR+=" --nofork" + fi +fi +if [ -z "$EDITOR" ]; then + EDITOR="$(which vim)" +fi +if [ -z "$EDITOR" ]; then + EDITOR="$(which vi)" +fi +## +# out of ideas about editors at this point. +## +# set the VISUAL variable from EDITOR if we found an editor to use. +if [ ! -z "$EDITOR" ]; then + VISUAL="$EDITOR" +fi + +############## +