added defaulting of editor
authorChris Koeritz <fred@gruntose.com>
Wed, 15 Nov 2017 02:58:59 +0000 (21:58 -0500)
committerChris Koeritz <fred@gruntose.com>
Wed, 15 Nov 2017 02:58:59 +0000 (21:58 -0500)
we will use whatever editor we can find, starting with the most elaborately visual and easy to use (bluefish).

scripts/core/variables.sh

index 7c552cbe65c3148fdf8285f72f9f9ccd60066132..0628a4f1d017f197bfcc79bb579f652c7c030fb3 100644 (file)
@@ -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
+
+##############
+