From 02e1b6afe6f11f9163007c785beb64121eda3257 Mon Sep 17 00:00:00 2001 From: Bodaniel Jeanes Date: Wed, 24 Nov 2010 16:38:02 +1000 Subject: [PATCH] Disable mateand nano as editors and go cold turkey with vim/mvim --- shell/exports.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/exports.sh b/shell/exports.sh index f7b1dd6..0a3d5d6 100644 --- a/shell/exports.sh +++ b/shell/exports.sh @@ -1,6 +1,6 @@ -if $(which mate > /dev/null); then +if $(which mate > /dev/null && false); then EDITOR="mate -wl1" -elif $(which nano > /dev/null); then +elif $(which nano > /dev/null && false); then EDITOR="nano -w" elif $(which mvim > /dev/null); then EDITOR="mvim"