[fish] Fixed test cases in 00-env
This commit is contained in:
parent
96acc9aeef
commit
8586e95eb4
1 changed files with 7 additions and 7 deletions
|
@ -24,24 +24,24 @@ set -e GPG_TTY
|
||||||
set -Ux GPG_TTY (tty)
|
set -Ux GPG_TTY (tty)
|
||||||
|
|
||||||
set -e EDITOR
|
set -e EDITOR
|
||||||
set -Ux EDITOR "emacsclient -"t
|
set -Ux EDITOR "emacsclient -t"
|
||||||
|
|
||||||
if test -z $VISUAL
|
if test -z "$VISUAL"
|
||||||
set -Ux VISUAL emacsclient -t
|
set -Ux VISUAL "emacsclient -t"
|
||||||
end
|
end
|
||||||
|
|
||||||
if test -z $GIT_EDITOR
|
if test -z "$GIT_EDITOR"
|
||||||
set -Ux GIT_EDITOR es
|
set -Ux GIT_EDITOR es
|
||||||
end
|
end
|
||||||
|
|
||||||
if test -z $GOPATH
|
if test -z "$GOPATH"
|
||||||
set -Ux GOPATH ~/.go
|
set -Ux GOPATH ~/.go
|
||||||
end
|
end
|
||||||
|
|
||||||
if test -z $XDG_CURRENT_DESKTOP
|
if test -z "$XDG_CURRENT_DESKTOP"
|
||||||
set -Ux XDG_CURRENT_DESKTOP GNOME
|
set -Ux XDG_CURRENT_DESKTOP GNOME
|
||||||
end
|
end
|
||||||
|
|
||||||
if test -z $QT_STYLE_OVERRIDE
|
if test -z "$QT_STYLE_OVERRIDE"
|
||||||
set -Ux QT_STYLE_OVERRIDE kvantum
|
set -Ux QT_STYLE_OVERRIDE kvantum
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue