gpt4 book ai didi

windows-terminal - 如何打开带有 4 个 Pane 的 Windows 终端?

转载 作者:行者123 更新时间:2023-12-03 13:31:24 36 4
gpt4 key购买 nike

我想从命令行使用 wt.exe 在 Windows 终端中打开 4 个相等的 Pane 。这是预期的结果:

enter image description here

我曾尝试使用 split-pane ,但没​​有 focus-pane 命令,它不起作用。

是否有可能以任何其他方式这样做?

最佳答案

我能够使用 JScript 以编程方式使其工作。不像使用 wt.exe 参数那么漂亮,但它是我们现在可以从 bat 文件中做的最好的事情。

@if (@X) == (@Y) @end /*
@cscript //E:JScript //nologo "%~f0" "%*"
@exit /b %errorlevel%
*/

// run windows terminal
var shell = WScript.CreateObject("WScript.Shell");
shell.run("wt.exe");
WScript.Sleep(500);

// ALT+SHIFT+=
shell.SendKeys("%+=");
WScript.Sleep(500);

// ALT+SHIFT+-
shell.SendKeys("%+-");
WScript.Sleep(500);

// focus left pane
shell.SendKeys("%{LEFT}");

// ALT+SHIFT+-
WScript.Sleep(500);
shell.SendKeys("%+-");

关于windows-terminal - 如何打开带有 4 个 Pane 的 Windows 终端?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61878143/

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