From 61d5aed0a2fd1b383d5216e9152b306a540625b0 Mon Sep 17 00:00:00 2001 From: Philipp A Date: Tue, 16 Jan 2024 13:42:17 +0100 Subject: [PATCH] Fix deprecation in default_config.nu (#11547) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # Description in https://github.com/nushell/nushell/pull/11289, spreading lists into command invocations was made possible and its implicit version was deprecated, but not everything was updated accordingly. # User-Facing Changes A commented part of the default config no longer throws a deprecation warning when uncommented # After Submitting After https://github.com/nushell/nushell/pull/11289, the mention of carapace in the documentation wasn’t updated. See https://github.com/nushell/nushell.github.io/pull/1211 --- crates/nu-utils/src/sample_config/default_config.nu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-utils/src/sample_config/default_config.nu b/crates/nu-utils/src/sample_config/default_config.nu index faae590df6..b12057d635 100644 --- a/crates/nu-utils/src/sample_config/default_config.nu +++ b/crates/nu-utils/src/sample_config/default_config.nu @@ -138,7 +138,7 @@ let light_theme = { # External completer example # let carapace_completer = {|spans| -# carapace $spans.0 nushell $spans | from json +# carapace $spans.0 nushell ...$spans | from json # } # The default config record. This is where much of your global configuration is setup.