From f62b10487c2d2560923865b07306765f8ff055a2 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Fri, 15 Apr 2011 17:03:59 -0400 Subject: Fiddle with the default editor Start tracking .selected editor, make use of this in .profile. Create the v-editor script, which calls either $VISUAL, $EDITOR, or $SELECTED editor, depending. Symlink `v-editor' to `editor', to overide /bin/editor, which might be used by some stupid programs. --- .profile | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to '.profile') diff --git a/.profile b/.profile index c9db459..8808917 100644 --- a/.profile +++ b/.profile @@ -8,6 +8,11 @@ # for ssh logins, install and configure the libpam-umask package. #umask 022 +# set PATH so it includes user's private bin if it exists +if [ -d "$HOME/bin" ]; then + export PATH="$HOME/bin:$PATH" +fi + # if running bash if [ -n "$BASH_VERSION" ]; then # include .bashrc if it exists @@ -16,7 +21,10 @@ if [ -n "$BASH_VERSION" ]; then fi fi -# set PATH so it includes user's private bin if it exists -if [ -d "$HOME/bin" ] ; then - PATH="$HOME/bin:$PATH" +# set SELECTED_EDITOR, EDITOR, and VISUAL to set the text editor used +if [ -f "$HOME/.selected_editor" ]; then + . "$HOME/.selected_editor" + export SELECTED_EDITOR + export EDITOR="${EDITOR:-$SELECTED_EDITOR}" + export VISUAL="${VISUAL:-$SELECTED_EDITOR}" fi -- cgit v1.2.3-54-g00ecf