From eaae508e12edcb9df0fde8b2c9541b0430ad4c43 Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Sat, 29 Jun 2024 09:14:56 -0500 Subject: [PATCH] tweak --- crates/nu-command/src/strings/str_/deunicode.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/nu-command/src/strings/str_/deunicode.rs b/crates/nu-command/src/strings/str_/deunicode.rs index 5d2e7b8ee3..0b70cf2003 100644 --- a/crates/nu-command/src/strings/str_/deunicode.rs +++ b/crates/nu-command/src/strings/str_/deunicode.rs @@ -38,6 +38,7 @@ impl Command for SubCommand { ) -> Result { let cell_paths: Vec = call.rest(engine_state, stack, 0)?; let args = CellPathOnlyArgs::from(cell_paths); + operate(action, args, input, call.head, engine_state.ctrlc.clone()) }