Disable mateand nano as editors and go cold turkey with vim/mvim

pull/2/head
Bodaniel Jeanes 2010-11-24 16:38:02 +10:00
parent fafb8d0675
commit 02e1b6afe6
1 changed files with 2 additions and 2 deletions

View File

@ -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"