Release Notes:

- vim: Fix crash in `ci{`
This commit is contained in:
Conrad Irwin
2025-02-19 06:24:54 +00:00
committed by GitHub
parent 1678e3cbf1
commit 13da468e22
+3 -1
View File
@@ -1546,7 +1546,9 @@ fn surrounding_markers(
}
// Adjust closing.start to exclude whitespace after a newline, if present
if let Some(end) = last_newline_end {
closing.start = end;
if end > opening.end {
closing.start = end;
}
}
}