diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-12-07 01:19:02 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-12-07 01:19:02 +0100 |
commit | 4f6438ec666843b9ea97d32b2e3458fbe0afb44d (patch) | |
tree | 9c67f5050623c0f206a16f0ae9ce0a693488797b /Kernel/VirtualConsole.h | |
parent | a8c7b6ce868671b3a70ac640ae866744690712ca (diff) | |
download | serenity-4f6438ec666843b9ea97d32b2e3458fbe0afb44d.zip |
VirtualConsole: Support the 'A' and 'D' CSI sequences.
This makes backspace work correctly when line editing with bash-2.05b.
Diffstat (limited to 'Kernel/VirtualConsole.h')
-rw-r--r-- | Kernel/VirtualConsole.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/VirtualConsole.h b/Kernel/VirtualConsole.h index 76be9b45bf..2888ced10d 100644 --- a/Kernel/VirtualConsole.h +++ b/Kernel/VirtualConsole.h @@ -41,6 +41,7 @@ private: void put_character_at(unsigned row, unsigned column, byte ch); void escape$A(const Vector<unsigned>&); + void escape$D(const Vector<unsigned>&); void escape$H(const Vector<unsigned>&); void escape$J(const Vector<unsigned>&); void escape$m(const Vector<unsigned>&); |