We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab83e00 commit b3ef980Copy full SHA for b3ef980
1 file changed
src/Microsoft.PowerShell.PSReadLine/ReadLine.cs
@@ -485,8 +485,6 @@ private PSConsoleReadLine()
485
_console = new ConhostConsole();
486
#endif
487
488
- SetDefaultWindowsBindings();
489
-
490
_buffer = new StringBuilder(8 * 1024);
491
_statusBuffer = new StringBuilder(256);
492
_savedCurrentLine = new HistoryItem();
@@ -516,6 +514,7 @@ private PSConsoleReadLine()
516
514
hostName = "PSReadline";
517
515
}
518
_options = new PSConsoleReadlineOptions(hostName);
+ SetDefaultBindings(_options.EditMode);
519
520
521
private void Initialize(Runspace runspace, EngineIntrinsics engineIntrinsics)
0 commit comments