Appendix Windows Terminal Actions
We covered a subset of Windows Terminal actions in both Chapter 6, Setting up keyboard shortcuts, and Chapter 7, Hidden Windows Terminal Actions. This Appendix lists all the actions that are available as of Windows Terminal 1.6.
As a reminder, the syntax for binding a Windows Terminal action to a keyboard shortcut is as follows:
{ Â Â "command": { Â Â Â Â "action": "actionName", Â Â Â Â "property": "value" Â Â }, Â Â "keys": "keyboard+shortcut" }
Here, property
is one or more unique properties that belong to the action. Let's look at an example:
{ Â Â "command": { Â Â Â Â "action": "splitPane", Â Â Â Â "split": "auto" Â Â }, Â Â "keys": "alt+shift+d" }
In this example, the split
property...