From 7c4ed0f8dac9b31268eafbdfcfdbbfab232a796d Mon Sep 17 00:00:00 2001 From: Rolo Date: Wed, 8 Jan 2025 04:17:16 -0800 Subject: [PATCH] reafactor: enable `unescape_backslashes` flag --- helix-core/src/shellwords.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-core/src/shellwords.rs b/helix-core/src/shellwords.rs index be65988a95a5..c22f75a8b6a1 100644 --- a/helix-core/src/shellwords.rs +++ b/helix-core/src/shellwords.rs @@ -210,7 +210,7 @@ impl<'a> Args<'a> { }), ParseMode::Parameters => Ok(Self { input, - positionals: args.with_unescaping().collect(), + positionals: args.with_unescaping().unescape_backslashes().collect(), flags: __flags, }), }