From 145e8cef27d5282506710687bcc9b612281ec4fd Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Mon, 4 Jul 2011 11:11:24 +0200 Subject: [PATCH] Use vi instead of vim as the default editor --- src/fmail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fmail.c b/src/fmail.c index f023815..0c13357 100644 --- a/src/fmail.c +++ b/src/fmail.c @@ -419,7 +419,7 @@ get_editor(void) if ( ! (editor = getenv("EDITOR")) ) if ( ! (editor = getenv("VISUAL")) ) - editor = "vim"; + editor = "vi"; return editor; }