From 43f3491d50d3bfbc1777fc74209fc70e57582a16 Mon Sep 17 00:00:00 2001 From: Michael Sloan Date: Tue, 28 Jan 2025 23:18:56 -0700 Subject: [PATCH] Add comment explaining why AddSurrounds target is not deserializable (#23820) See #23088 Release Notes: - N/A --- crates/vim/src/state.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/vim/src/state.rs b/crates/vim/src/state.rs index 32c11b2d22..ddd83f4666 100644 --- a/crates/vim/src/state.rs +++ b/crates/vim/src/state.rs @@ -81,6 +81,7 @@ pub enum Operator { first_char: Option, }, AddSurrounds { + // Typically no need to configure this as `SendKeystrokes` can be used - see #23088. #[serde(skip)] target: Option, },