From 5f2a5ffadde74927e93475076219d46a3336b74d Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Thu, 5 Sep 2024 20:14:55 -0600 Subject: [PATCH] Allow spaces in range queries (#17474) Updates #17397 Release Notes: - vim: Fixed parsing of commands with ranges `:3 d`. --- crates/vim/src/command.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/vim/src/command.rs b/crates/vim/src/command.rs index 03bb892045..1887758990 100644 --- a/crates/vim/src/command.rs +++ b/crates/vim/src/command.rs @@ -629,7 +629,7 @@ pub fn command_interceptor(mut input: &str, cx: &AppContext) -> Option