Skip to content

Instantly share code, notes, and snippets.

@EtienneDuv
Created December 15, 2021 08:41
Show Gist options
  • Save EtienneDuv/115c34b75bb0f251eaebaaa0ceb61284 to your computer and use it in GitHub Desktop.
Save EtienneDuv/115c34b75bb0f251eaebaaa0ceb61284 to your computer and use it in GitHub Desktop.
Custom actions for Windows Terminal
"actions":
[
{
"command":
{
"action": "copy",
"singleLine": false
},
"keys": "ctrl+c"
},
{
"command": "paste",
"keys": "ctrl+v"
},
{
"command": "newTab",
"keys": "ctrl+t"
},
{
"command": "closeTab",
"keys": "ctrl+w"
},
{
"command": "find",
"keys": "ctrl+f"
},
{
"command": "prevTab",
"keys": "f3"
},
{
"command": "nextTab",
"keys": "f4"
},
{
"command": "openTabRenamer",
"keys": "f2"
},
{
"command": "scrollDownPage",
"keys": "pgdn"
},
{
"command": "scrollUpPage",
"keys": "pgup"
},
{
"command":
{
"action": "splitPane",
"split": "auto",
"splitMode": "duplicate"
},
"keys": "ctrl+alt+right"
}
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment