오늘 Windows Terminal Preview 1.6 버전이 출시되었습니다. 많은 분들이 기다리시던 정식 설정 UI가 드디어 포함되었습니다. 아직은 기본 기능으로 연결되지 않았지만, 공식 블로그의 안내대로 Ctrl + Shift + , 키에 바인딩되도록 설정 파일을 수정하면 설정 UI에 접근하실 수 있습니다.
2개의 좋아요
To bind the settings UI to Ctrl+Shift+,, add the following to your
actionsarray (orkeybindingsif you have an older version of the settings file):
{ “command”: { “action”: “openSettings”, “target”: “settingsUI” }, “keys”: “ctrl+shift+,” },
"actions":
[
...,
{
"command":
{
"action": "openSettings",
"target": "settingsUI"
},
"keys": "ctrl+shift+,"
}
],

1개의 좋아요