From 4e6675c0a74cf639f61944dee8490f819d0f77f6 Mon Sep 17 00:00:00 2001 From: Sasha MOREL Date: Thu, 24 Sep 2020 18:45:19 +0200 Subject: [PATCH] Erreur en cas de non-installation de vim --- rc.os/Debian.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rc.os/Debian.zsh b/rc.os/Debian.zsh index c12c10d..7f8bf37 100644 --- a/rc.os/Debian.zsh +++ b/rc.os/Debian.zsh @@ -1,4 +1,4 @@ -# vim: set syntax=zsh: +# vim: set syntax=zsh: # Completion for apache 2 Debian tools @@ -56,7 +56,7 @@ if [ "x$SSH_CLIENT" = "x" ]; then USE_XTABS=True fi -if [ -x $(which -p vim) ]; then +if [ -x "$(which -p vim)" ]; then export EDITOR=vim export VISUAL=vim fi