Search notes:

PowerShell cmdLet get-psReadLineKeyHandler

get-psReadLineKeyHandler returns an array of Microsoft.PowerShell.KeyHandler objects:
PS C:\> (get-psReadLineKeyHandler).GetType().FullName
System.Object[]

PS C:\> (get-psReadLineKeyHandler)[0].GetType().FullName
Microsoft.PowerShell.KeyHandler

Querying what a specific key is assigned to

By combininging get-psReadLineKeyHandler with the where-object cmdLet, it is possible to query what action a specific key is assigned to:
PS C:\> get-psReadLineKeyHandler | where-object key -eq 'Ctrl+Home' | select-object function,description

Function           Description
--------           -----------
BackwardDeleteLine Delete text from the cursor to the start of the line

Key handler groups

A key handler is assigned a group:
PS C:\> get-psReadLineKeyHandler | select-object group  -unique

         Group
         -----
         Basic
CursorMovement
       History
    Completion
 Miscellaneous
        Search

See also

Powershell command noun: psReadLineKeyHandler

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/Windows/...', 1743264594, '3.131.142.67', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/Windows/PowerShell/command-inventory/noun/psReadLineKeyHandler/get(66): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78