Add comment explaining why AddSurrounds target is not deserializable (#23820)

Michael Sloan created

See #23088

Release Notes:

- N/A

Change summary

crates/vim/src/state.rs | 1 +
1 file changed, 1 insertion(+)

Detailed changes

crates/vim/src/state.rs 🔗

@@ -81,6 +81,7 @@ pub enum Operator {
         first_char: Option<char>,
     },
     AddSurrounds {
+        // Typically no need to configure this as `SendKeystrokes` can be used - see #23088.
         #[serde(skip)]
         target: Option<SurroundsType>,
     },