This is a fork of PowerShell/PSReadLine. It exists to
give PSLoom's Hooks and SyntaxHighlighting subsystems
extensibility points that upstream PSReadLine doesn't expose yet.
The assembly, module manifest, and public C# namespace/types (Microsoft.PowerShell.PSConsoleReadLine,
etc.) are unchanged from upstream - this fork still ships and loads as PSReadLine. Builds are
published as GitHub releases and installed with
tools/Install-PSLoomPSReadLine.ps1, which backs up whatever
PSReadLine pwsh would otherwise auto-load (including the one bundled with the PowerShell
installation itself) and replaces it in place with this fork's build - so pwsh keeps loading
"PSReadLine" as usual, without any $PROFILE changes.
Run from Windows PowerShell (powershell.exe), not pwsh - pwsh always auto-loads its own
PSReadLine, so a pwsh process running the installer is always holding a lock on the very files
it needs to replace. Close any other running pwsh sessions first (the script checks and refuses to
run while it finds one), then, elevated if the resolved PSReadLine lives under Program Files:
powershell -NoProfile -NonInteractive -Command "& ([scriptblock]::Create((Invoke-RestMethod 'https://raw.githubusercontent.com/baliestri/PSReadLine/fork/tools/Install-PSLoomPSReadLine.ps1')))"To revert back to the original PSReadLine:
powershell -NoProfile -NonInteractive -Command "& ([scriptblock]::Create((Invoke-RestMethod 'https://raw.githubusercontent.com/baliestri/PSReadLine/fork/tools/Install-PSLoomPSReadLine.ps1'))) -Uninstall"Either way, restart your pwsh session afterwards - the change only takes effect in a new process.
See tools/Install-PSLoomPSReadLine.ps1 for what it actually
does (backup, download, -WhatIf/-Confirm support, etc.).
Each feature added here has a corresponding issue open in this fork, and is intended to also be proposed upstream as its own PR:
- #1 - Expose ScriptBlock on
Get-PSReadLineKeyHandler - #2 - Expose the initial prompt cursor position
- #3 -
LineAcceptedHandleroption - #4 -
TokenColorHandleroption
PowerShell/PSReadLine has a real, observed pattern of not engaging with external feature work:
upstream issue #3439 (the direct ask
behind #4 above) has been open since 2022, with its most recent comment - a plain "would a PR be
accepted?" - going unanswered; several unrelated feature PRs there have sat for 1-4 months with no
maintainer engagement, out of 272 open issues at the time of writing. Given that, this fork is
maintained as its own independent module for as long as needed, not as a stopgap with an assumed
end date.
If and when a feature here is fully absorbed into an official PSReadLine release, that piece of
the diff is dropped from this fork on the next rebase against upstream master, and PSLoom's own
RequiredModules goes back to depending on the official module for whatever was assimilated.
This fork is not meant to be opened as a PR against PowerShell/PSReadLine. Only the
individual feature branches behind issues #1-#4 are.
This module replaces the command line editing experience of PowerShell for versions 3 and up. It provides:
- Syntax coloring
- Simple syntax error notification
- A good multi-line experience (both editing and history)
- Customizable key bindings
- Cmd and emacs modes (neither are fully implemented yet, but both are usable)
- Many configuration options
- Bash style completion (optional in Cmd mode, default in Emacs mode)
- Bash/zsh style interactive history search (CTRL-R)
- Emacs yank/kill ring
- PowerShell token based "word" movement and kill
- Undo/redo
- Automatic saving of history, including sharing history across live sessions
- "Menu" completion (somewhat like Intellisense, select completion with arrows) via Ctrl+Space
The "out of box" experience is meant to be very familiar to PowerShell users - there should be no need to learn any new key strokes.
Some good resources about PSReadLine:
- Keith Hill wrote a great introduction (2013) to
PSReadLine. - Ed Wilson (Scripting Guy) wrote a series (2014-2015) on
PSReadLine. - John Savill has a video (2021) covering installation, configuration, and tailoring
PSReadLineto your liking.
You will need the 1.6.0 or a higher version of PowerShellGet to install or upgrade to the latest prerelease version of PSReadLine.
PowerShell 6+ already has a higher version of PowerShellGet built-in.
However, Windows PowerShell 5.1 ships an older version of PowerShellGet which doesn't support installing prerelease modules.
So, Windows PowerShell users need to install the latest PowerShellGet (if not yet) by running the following commands from an elevated Windows PowerShell session:
Install-Module -Name PowerShellGet -Force; exitAfter installing PowerShellGet, you install or upgrade to the latest prerelease version of PSReadLine by running
Install-Module PSReadLine -Repository PSGallery -Scope CurrentUser -AllowPrerelease -ForceIf you only want to get the latest stable version, run:
Install-Module PSReadLine -Repository PSGallery -Scope CurrentUser -Force[!NOTE] Prerelease versions will have newer features and bug fixes, but may also introduce new issues.
To use Emacs key bindings, you can use:
Set-PSReadLineOption -EditMode EmacsTo view the current key bindings:
Get-PSReadLineKeyHandlerThere are many configuration options, see the options to Set-PSReadLineOption.
PSReadLine has help for its cmdlets as well as an about_PSReadLine topic - see those topics for more detailed help.
To set your own custom keybindings, use the cmdlet Set-PSReadLineKeyHandler.
For example, for a better history experience, try:
Set-PSReadLineKeyHandler -Key UpArrow -Function HistorySearchBackward
Set-PSReadLineKeyHandler -Key DownArrow -Function HistorySearchForwardWith these bindings, up arrow/down arrow will work like PowerShell/cmd if the current command line is blank. If you've entered some text though, it will search the history for commands that start with the currently entered text.
To enable bash style completion without using Emacs mode, you can use:
Set-PSReadLineKeyHandler -Key Tab -Function CompleteHere is a more interesting example of what is possible:
Set-PSReadLineKeyHandler -Chord '"',"'" `
-BriefDescription SmartInsertQuote `
-LongDescription "Insert paired quotes if not already on a quote" `
-ScriptBlock {
param($key, $arg)
$line = $null
$cursor = $null
[Microsoft.PowerShell.PSConsoleReadLine]::GetBufferState([ref]$line, [ref]$cursor)
if ($line.Length -gt $cursor -and $line[$cursor] -eq $key.KeyChar) {
# Just move the cursor
[Microsoft.PowerShell.PSConsoleReadLine]::SetCursorPosition($cursor + 1)
}
else {
# Insert matching quotes, move cursor to be in between the quotes
[Microsoft.PowerShell.PSConsoleReadLine]::Insert("$($key.KeyChar)" * 2)
[Microsoft.PowerShell.PSConsoleReadLine]::GetBufferState([ref]$line, [ref]$cursor)
[Microsoft.PowerShell.PSConsoleReadLine]::SetCursorPosition($cursor - 1)
}
}In this example, when you type a single quote or double quote, there are two things that can happen.
If the character following the cursor is not the quote typed, then a matched pair of quotes is inserted and the cursor is placed inside the the matched quotes.
If the character following the cursor is the quote typed, the cursor is simply moved past the quote without inserting anything.
If you use VSCode, Resharper, or another smart editor, this experience will be familiar.
Note that with the handler written this way, it correctly handles Undo - both quotes will be undone with one undo.
The sample profile file has a bunch of great examples to check out. This file is included when PSReadLine is installed.
See the public methods of [Microsoft.PowerShell.PSConsoleReadLine] to see what other built-in functionality you can modify.
If you want to change the command line in some unimplmented way in your custom key binding, you can use the methods:
[Microsoft.PowerShell.PSConsoleReadLine]::GetBufferState
[Microsoft.PowerShell.PSConsoleReadLine]::Insert
[Microsoft.PowerShell.PSConsoleReadLine]::Replace
[Microsoft.PowerShell.PSConsoleReadLine]::SetCursorPositionPlease see the Contribution Guide for how to develop and contribute.
To build PSReadLine on Windows, Linux, or macOS,
you must have the following installed:
- .NET 6.0 or a newer version
- The PowerShell modules
InvokeBuildandplatyPS
The build script build.ps1 can be used to bootstrap, build and test the project.
- Bootstrap:
./build.ps1 -Bootstrap - Build:
./build.ps1 -Configuration Debug - Test:
- Targeting .NET 4.7.2 (Windows only):
./build.ps1 -Test -Configuration Debug -Framework net472 - Targeting .NET 6.0:
./build.ps1 -Test -Configuration Debug -Framework net6.0
- Targeting .NET 4.7.2 (Windows only):
After build, the produced artifacts can be found at <your-local-repo-root>/bin/Debug.
In order to isolate your imported module to the one locally built, be sure to run
pwsh -NonInteractive -NoProfile to not automatically load the default PSReadLine module installed.
Then, load the locally built module by Import-Module <your-local-repo-root>/bin/Debug/PSReadLine/PSReadLine.psd1.
The change log is available here. This fork's own changes are tracked as issues #1-#5.
This fork is licensed under the 2-Clause BSD License, same as upstream PSReadLine.
Please see our Code of Conduct before participating in this project.
For any security issues, please see our Security Policy.