背景
Scoopでbrootを入れたら、alt+enterの機能が被った。
対策
WindowsTerminal特有ののalt+enterのショートカットを外した。
やり方
1. WindowsTerminalのJSONファイルを開く(左下)
2. "actions":のところに {"command": "unbound", "keys": "alt+enter" },
を追記。
{
"actions":
[
{
"command":
{
"action": "copy",
"singleLine": false
},
"keys": "ctrl+c"
},
{
"command": "paste",
"keys": "ctrl+v"
},
{
"command": "find",
"keys": "ctrl+shift+f"
},
{
"command": "unbound",
"keys": "alt+enter"
},
{
"command":
{
"action": "splitPane",
"split": "auto",
"splitMode": "duplicate"
},
"keys": "alt+shift+d"
}
]