Skip to content

Always display special language characters #667

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 4, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions PSReadLine/Keys.cs
Original file line number Diff line number Diff line change
Expand Up @@ -551,8 +551,12 @@ internal static int GetNormalizedHashCode(this ConsoleKeyInfo obj)

internal static bool ShouldInsert(this ConsoleKeyInfo key)
{
if (key.KeyChar == '\0') return false;

var keyChar = key.KeyChar;
if (keyChar == '\0') return false;
foreach (char c in "`~!@#$%^&*()-_=+[{]}\\|;:'\",<.>/?") {
// we always want to insert chars essential to the PowerShell experience
if (keyChar == c) { return true; }
}
if (key.Modifiers != 0)
{
// We want to ignore control sequences - but distinguishing a control sequence
Expand Down