gpt4 book ai didi

windows-terminal - 默认情况下如何启动具有多个 Pane 的新 Windows 终端?

转载 作者:行者123 更新时间:2023-12-04 04:17:25 24 4
gpt4 key购买 nike

是否有默认将新 Windows 终端拆分为多个 Pane 的设置?例如从两列开始,第二列分成两个水平部分?

最佳答案

This feature目前处于预览模式,它的工作方式将来可能会改变,但目前这可以通过将 startupActions 添加到您的 settings.json 来实现。

例如,要从两个 Pane 开始,垂直拆分并将光标移动到左侧 Pane (默认情况下它将保留在最后创建的 Pane 上),您的 settings.json 应该如下所示:

{
"$schema": "https://aka.ms/terminal-profiles-schema",
"defaultProfile": "{00000000-0000-0000-0000-000000000001}",
"launchMode": "maximized",
"startupActions": "split-pane; move-focus left", // This is the new line you need
"profiles": {
"defaults": {
},
"list": [
{
"guid": "{00000000-0000-0000-0000-000000000001}",
"acrylicOpacity": 0.9,
"useAcrylic": true,
"closeOnExit": true,
"colorScheme": "Solarized Dark",
"commandline": "\"%PROGRAMFILES%\\Git\\usr\\bin\\bash.exe\" --login -i -l",
"cursorColor": "#FFFFFF",
"cursorShape": "bar",
"fontFace": "Consolas",
"fontSize": 10,
"historySize": 9001,
"icon": "%PROGRAMFILES%\\Git\\mingw64\\share\\git\\git-for-windows.ico",
"name": "GitBash",
"padding": "15, 5, 10, 55",
"snapOnInput": true,
"startingDirectory": "%USERPROFILE%\\Desktop"
}
]
},
"schemes": [],
"keybindings": []
}

Some of the commands你可以使用的是 new-tab, split-pane, focus-tab, move-focus.. .

关于windows-terminal - 默认情况下如何启动具有多个 Pane 的新 Windows 终端?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60400642/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com