Release Notes:

- vim: Fix crash in `ci{`
This commit is contained in:
Conrad Irwin 2025-02-18 23:24:54 -07:00 committed by GitHub
parent 1678e3cbf1
commit 13da468e22
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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;
}
}
}