From d80ed1b80a1edd0a9f2aa5525e9ca57f360aad54 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Fri, 23 Apr 2010 12:24:47 +0200 Subject: [PATCH] zsh/rc: Fix wrong handling of vi in title code. vi and vim (v) are different! --- zsh/rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/rc b/zsh/rc index 73cf71a..1d61d6e 100644 --- a/zsh/rc +++ b/zsh/rc @@ -271,7 +271,7 @@ if [[ $TERM == screen* || $TERM == xterm* || $TERM == rxvt* ]]; then m) program_name=mutt ;; - v|vi) + v) program_name=vim ;; esac -- 2.45.2