fix(vterm): share line-feed screen dispatch

Merge the identical LF and IND match arms so the post-review workspace Clippy
gate remains warning-free without changing terminal behavior.
This commit is contained in:
Levi Neuwirth 2026-07-21 15:35:25 -04:00
parent 28f2e6ce66
commit bf972a76fa
1 changed files with 1 additions and 5 deletions

View File

@ -233,11 +233,7 @@ impl TerminalScreen {
self.changed();
None
}
AnsiEvent::LineFeed => {
self.line_feed(false);
None
}
AnsiEvent::Index => {
AnsiEvent::LineFeed | AnsiEvent::Index => {
self.line_feed(false);
None
}