mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-07 18:21:16 -03:00
Make the functions for setting default values use gobal values if universal variables are broken
darcs-hash:20060305212601-ac50b-075bc6976435e5bd86151603cb8f0fc634c542bb.gz
This commit is contained in:
@@ -45,9 +45,12 @@ end
|
|||||||
# Set various color values
|
# Set various color values
|
||||||
#
|
#
|
||||||
|
|
||||||
function set_default -d "Set an exported universal variable, unless it has already been set"
|
function set_default -d "Set an universal variable, unless it has already been set"
|
||||||
if not set -q $argv[1]
|
if not set -q $argv[1]
|
||||||
set -Ux -- $argv
|
set -U -- $argv
|
||||||
|
end
|
||||||
|
if not set -q $argv[1]
|
||||||
|
set -g -- $argv
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -55,6 +58,9 @@ function set_exported_default -d "Set an exported universal variable, unless it
|
|||||||
if not set -q $argv[1]
|
if not set -q $argv[1]
|
||||||
set -Ux -- $argv
|
set -Ux -- $argv
|
||||||
end
|
end
|
||||||
|
if not set -q $argv[1]
|
||||||
|
set -gx -- $argv
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user