From ef328a22d404193d98fe4a3aa6f2e8c0b6f51985 Mon Sep 17 00:00:00 2001 From: Bodaniel Jeanes Date: Wed, 24 Nov 2010 16:41:03 +1000 Subject: [PATCH] Use vim as GIT_EDITOR --- shell/exports.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shell/exports.sh b/shell/exports.sh index 0a3d5d6..1436750 100644 --- a/shell/exports.sh +++ b/shell/exports.sh @@ -10,9 +10,9 @@ else EDITOR="vim" fi -export GEM_OPEN_EDITOR=$EDITOR -export GIT_EDITOR=$EDITOR -export VISUAL=$EDITOR +export VISUAL="$EDITOR" +export GEM_OPEN_EDITOR="$EDITOR" +export GIT_EDITOR=`which vim` # http://is.gd/hGrsF export IRBRC="$HOME/.irbrc" export JEWELER_OPTS="--rspec --gemcutter --rubyforge --reek --roodi"