HOTFIX: report up arrow correctly
This commit is contained in:
parent
ac8a9d4b28
commit
94669fc930
1 changed files with 1 additions and 1 deletions
|
|
@ -60,7 +60,7 @@ impl AnsiEncoding {
|
||||||
match self {
|
match self {
|
||||||
Self::Left => "OD".as_bytes(),
|
Self::Left => "OD".as_bytes(),
|
||||||
Self::Right => "OC".as_bytes(),
|
Self::Right => "OC".as_bytes(),
|
||||||
Self::Up => "OC".as_bytes(),
|
Self::Up => "OA".as_bytes(),
|
||||||
Self::Down => "OB".as_bytes(),
|
Self::Down => "OB".as_bytes(),
|
||||||
Self::Home => &[27, 79, 72], // ESC O H
|
Self::Home => &[27, 79, 72], // ESC O H
|
||||||
Self::End => &[27, 79, 70], // ESC O F
|
Self::End => &[27, 79, 70], // ESC O F
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue