From 71ef8d317afc17729126a7d964fad2aefa274e10 Mon Sep 17 00:00:00 2001 From: Fabian Boehm Date: Fri, 6 Oct 2023 22:15:35 +0200 Subject: [PATCH] fish_config: Fix `save` with variable with multiple values Your basic quoting problem, regressed in 3.6.0 (cherry picked from commit 098b7093da27775c2e0d788d66fc249021ce0658) --- share/functions/fish_config.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/functions/fish_config.fish b/share/functions/fish_config.fish index 3989ec731..1923ae426 100644 --- a/share/functions/fish_config.fish +++ b/share/functions/fish_config.fish @@ -293,7 +293,7 @@ function fish_config --description "Launch fish's web based configuration" # Cache the value from whatever scope currently defines it set -l value $$color set -eg $color - set -U $color "$value" + set -U $color $value end end end