From 8586e95eb4fb4d78d1132a1c451abbd487d40833 Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Thu, 12 Mar 2020 07:14:50 +0100 Subject: [PATCH] [fish] Fixed test cases in 00-env --- shells/fish/conf.d/00-env.fish | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/shells/fish/conf.d/00-env.fish b/shells/fish/conf.d/00-env.fish index 5024860..4a5f407 100644 --- a/shells/fish/conf.d/00-env.fish +++ b/shells/fish/conf.d/00-env.fish @@ -24,24 +24,24 @@ set -e GPG_TTY set -Ux GPG_TTY (tty) set -e EDITOR -set -Ux EDITOR "emacsclient -"t +set -Ux EDITOR "emacsclient -t" -if test -z $VISUAL - set -Ux VISUAL emacsclient -t +if test -z "$VISUAL" + set -Ux VISUAL "emacsclient -t" end -if test -z $GIT_EDITOR +if test -z "$GIT_EDITOR" set -Ux GIT_EDITOR es end -if test -z $GOPATH +if test -z "$GOPATH" set -Ux GOPATH ~/.go end -if test -z $XDG_CURRENT_DESKTOP +if test -z "$XDG_CURRENT_DESKTOP" set -Ux XDG_CURRENT_DESKTOP GNOME end -if test -z $QT_STYLE_OVERRIDE +if test -z "$QT_STYLE_OVERRIDE" set -Ux QT_STYLE_OVERRIDE kvantum end