mirror of
https://github.com/fasteddy516/SimplySerial.git
synced 2024-11-24 10:04:35 +00:00
Added support for INS, DEL, HOME, END, PAGEUP, PAGEDOWN
This commit is contained in:
parent
292845af6d
commit
cdd720fba7
@ -56,7 +56,13 @@ namespace SimplySerial
|
||||
{ ConsoleKey.UpArrow, "\x1B[A" },
|
||||
{ ConsoleKey.DownArrow, "\x1B[B" },
|
||||
{ ConsoleKey.RightArrow, "\x1B[C" },
|
||||
{ ConsoleKey.LeftArrow, "\x1B[D" }
|
||||
{ ConsoleKey.LeftArrow, "\x1B[D" },
|
||||
{ ConsoleKey.Home, "\x1B[H" },
|
||||
{ ConsoleKey.End, "\x1B[F" },
|
||||
{ ConsoleKey.Insert, "\x1B[2~" },
|
||||
{ ConsoleKey.Delete, "\x1B[3~" },
|
||||
{ ConsoleKey.PageUp, "\x1B[5~" },
|
||||
{ ConsoleKey.PageDown, "\x1B[6~" }
|
||||
};
|
||||
|
||||
static void Main(string[] args)
|
||||
|
Loading…
Reference in New Issue
Block a user