如何在啟動時將 Windows 終端分割為 2x3 大小相等的窗格?

如何在啟動時將 Windows 終端分割為 2x3 大小相等的窗格?

我希望 Windows 終端機以大小相等的 2x3 窗格啟動,但使用下面的命令它們大小不相等:

"startupActions": "sp -p \"Bash\" ;  mf left; sp -p \"Bash\" -H ; mf right ; sp -p \"Bash\" -H ; mf up; sp -p \"Bash\" -V ; mf down;  sp -p \"Bash\" -V "

我可以做 3 個垂直相鄰的相同大小的窗格,但我無法移動到水平窗格的第一個窗格:

"startupActions": "sp -s .7 ; sp ; mf left ; mf left"

TDLR:我想要這個:https://i.stack.imgur.com/9pvT4.png

但我有這個:https://i.stack.imgur.com/fJfAm.png

答案1

我認為您的佈局不存在啟動命令,但還有另一種解決方案。

這將使用該設定在重新啟動後恢復先前的選項卡和窗格。可以透過在文件的全域設定 或啟動頁面上的設定中firstWindowPreference設定來 啟用此功能:persistedWindowLayoutsettings.json

"firstWindowPreference": "persistedWindowLayout"

現在您需要做的就是使用以下命令啟動上面的佈局:

wt sp -p \"Bash\" ;  mf left; sp -p \"Bash\" -H ; mf right ; sp -p \"Bash\" -H ; mf up; sp -p \"Bash\" -V ; mf down;  sp -p \"Bash\" -V

然後按住 Alt+Shift 並使用箭頭鍵調整焦點窗格的大小來調整窗格的大小。

將佈局調整至完美後,退出 Windows 終端機。當您下次再次啟動它時,它將保持相同的佈局。

參考:

相關內容