如何启动 Emacs,使一个进程在框架的顶部窗口中,另一个进程在框架的下部窗口中?

发布于 2024-09-02 15:34:36 字数 166 浏览 5 评论 0原文

我有一些从函数运行的进程,即: MX 运行 proc1 Mx run-proc2

我想知道从命令行发出什么命令来运行 emacs,run-proc1 在上面的窗口中运行,run-proc2 在下面的窗口中运行下窗。

谢谢!

I have some processes that run from functions, i.e.:
M-x run-proc1
M-x run-proc2

I would like to know what command to issue from the command line to run emacs with run-proc1 running in the upper window and run-proc2 running in the lower window.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

会发光的星星闪亮亮i 2024-09-09 15:34:36

稍后您可能会得到更好的答案,但将其附加到 ~/.emacs.d/init.el 可能会起作用。

(split-window-vertically)
(run-proc1)
(other-window)
(run-proc2)
(other-window)

或者(另一种方法),请参阅 此链接

You might get better answers later, but appending this to your ~/.emacs.d/init.el might work.

(split-window-vertically)
(run-proc1)
(other-window)
(run-proc2)
(other-window)

Alternatively (for another approach), see this link.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文