From 61ef9617fd94d5ec2f729d358bd9b5d18d17b580 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Chlo=C3=A9=20Vulquin?= Date: Sun, 21 Apr 2024 10:54:15 +0200 Subject: fish/setux: don't -el the arg It honestly makes no sense, why did I do this? It breaks on older fish and is really unnecessary. --- dot_config/private_fish/functions/setux.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dot_config/private_fish/functions') diff --git a/dot_config/private_fish/functions/setux.fish b/dot_config/private_fish/functions/setux.fish index 55a457f..98f0a9e 100644 --- a/dot_config/private_fish/functions/setux.fish +++ b/dot_config/private_fish/functions/setux.fish @@ -1,7 +1,7 @@ function setux --description "set named -U variables as -gx, overriding if necessary" for i in $argv if set -qU $i - set -elg $i + set -eg $i set -gx $i $$i end end -- cgit v1.2.3