- 打开Windows Terminal,按照如图步骤,或ctrl + , 组合键打开设置界面:

- 切换到Action选项卡,并点击Open JSON file,或直接点击左侧选项卡末尾的Open JSON file:

- 在打开的JSON文件中按需添加、修改。例如:
- 修改标签(TAB)切换快捷键,默认为ctrl+alt+[1-9],习惯了Linux下大部分终端的人,都会想改成ctrl+[1-9]吧:
"actions":
[
{ "command": { "action": "switchToTab", "index": 0 }, "keys": "alt+1" },
{ "command": { "action": "switchToTab", "index": 1 }, "keys": "alt+2" },
{ "command": { "action": "switchToTab", "index": 2 }, "keys": "alt+3" },
{ "command": { "action": "switchToTab", "index": 3 }, "keys": "alt+4" },
{ "command": { "action": "switchToTab", "index": 4 }, "keys": "alt+5" },
{ "command": { "action": "switchToTab", "index": 5 }, "keys": "alt+6" },
{ "command": { "action": "switchToTab", "index": 6 }, "keys": "alt+7" },
{ "command": { "action": "switchToTab", "index": 7 }, "keys": "alt+8" },
{ "command": { "action": "switchToTab", "index": 8 }, "keys": "alt+9" }
]