Skip to content

Commit

Permalink
Don't ignore ConsoleKey.Packet type as that is simply Unicode (#2632)
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveL-MSFT authored Jul 1, 2021
1 parent b276382 commit ad74cef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PSReadLine/Keys.cs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ void AppendPart(string str)
// Keys I'm not familiar with, presumably we'd want to ignore.
case ConsoleKey.Clear: case ConsoleKey.Pause: case ConsoleKey.Select: case ConsoleKey.Print:
case ConsoleKey.Execute: case ConsoleKey.Help: case ConsoleKey.Sleep: case ConsoleKey.Process:
case ConsoleKey.Packet: case ConsoleKey.Attention: case ConsoleKey.CrSel: case ConsoleKey.ExSel:
case ConsoleKey.Attention: case ConsoleKey.CrSel: case ConsoleKey.ExSel:
case ConsoleKey.EraseEndOfFile: case ConsoleKey.Play: case ConsoleKey.Zoom: case ConsoleKey.NoName:
case ConsoleKey.Pa1:

Expand Down

0 comments on commit ad74cef

Please sign in to comment.