We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I often happen to linger on shift when backspacing, which works well in most situations. PSReadLine punishes me with ^H :/.
Not a bug, perhaps, but a usability improvement.
The text was updated successfully, but these errors were encountered:
PSReadline shouldn't punish anyone. I'll call it a bug.
Sorry, something went wrong.
Easy workaround:
Set-PSReadlineKeyHandler -Key 'Shift+Backspace' -BriefDescription BackwardKillWord -Handler { [PSConsoleUtilities.PSConsoleReadline]::BackwardDeleteChar() }
For additional goodness:
Set-PSReadlineKeyHandler -Key 'Alt+Backspace' -BriefDescription BackwardKillWord -Handler { [PSConsoleUtilities.PSConsoleReadline]::KillBackwardWord() }
Very good job on the configurability!
This commit e8b8826 should address the rogue ^H problem.
I'll add bindings for Alt+Backspace soon.
No branches or pull requests
I often happen to linger on shift when backspacing, which works well in most situations. PSReadLine punishes me with ^H :/.
Not a bug, perhaps, but a usability improvement.
The text was updated successfully, but these errors were encountered: