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:
parent
28f2e6ce66
commit
bf972a76fa
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue