From 08a241f763a000a8eedc1c8906c996cbe9e6b8f9 Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Wed, 25 Sep 2024 07:43:05 -0500 Subject: [PATCH] update the defaults for shell_integration (#13929) # Description This PR updates the shell_integration defaults so that they work as described in default_config.nu even when there is no config.nu file. closes #13924 # User-Facing Changes # Tests + Formatting # After Submitting --- crates/nu-protocol/src/config/shell_integration.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/crates/nu-protocol/src/config/shell_integration.rs b/crates/nu-protocol/src/config/shell_integration.rs index f1eb6b3a53e..aa8ab85e9f6 100644 --- a/crates/nu-protocol/src/config/shell_integration.rs +++ b/crates/nu-protocol/src/config/shell_integration.rs @@ -16,13 +16,13 @@ pub struct ShellIntegrationConfig { impl Default for ShellIntegrationConfig { fn default() -> Self { Self { - osc2: false, - osc7: false, - osc8: false, + osc2: true, + osc7: true, + osc8: true, osc9_9: false, - osc133: false, - osc633: false, - reset_application_mode: false, + osc133: true, + osc633: true, + reset_application_mode: true, } } }