NAME
Remove-PSReadlineKeyHandler
SYNOPSIS
Removes a key binding.SYNTAX
Remove-PSReadlineKeyHandler [-Chord]
[-ViMode {Insert | Command}] [ ] DESCRIPTION
The Remove-PSReadlineKeyHandler cmdlet removes a specified key binding. Create a key binding by running the
Set-PSReadlineKeyHandler cmdlet.
PARAMETERS
-Chord
Specifies an array of keys or sequences of keys to be removed. A single binding is specified by using a single string. If the binding is a sequence of keys, separate the keys by a comma, as in the following example: "Ctrl+X,Ctrl+L" This parameter accepts multiple strings. Each string is a separate binding, not a sequence of keys for a single binding. Required? true Position? 0 Default value None Accept pipeline input? False Accept wildcard characters? false-ViMode
{{Fill ViMode Description}} Required? false Position? named Default value None Accept pipeline input? False Accept wildcard characters? falseThis cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216). INPUTS
You cannot pipe objects to this cmdlet.OUTPUTS
NOTES
Example 1: Remove a binding
PS C:\>Remove-PSReadlineKeyHandler -Chord "Shift+Ctrl+B"
This command removes the binding from the key combination, or chord, Ctrl+Shift+B. The Ctrl+Shift+B chord iscreated in the Set-PSReadlineKeyHandler topic.
RELATED LINKS
Online Version: http://go.microsoft.com/fwlink/?LinkId=821451Get-PSReadlineKeyHandler
Get-PSReadlineOption
Set-PSReadlineOption
Set-PSReadlineKeyHandler