Emacs erlang 缓冲区

发布于 2024-10-05 04:15:00 字数 140 浏览 3 评论 0原文

我使用 GNU/Emacs 进行 Erlang 编程。我通过发出 Cc Ck 来编译代码。当我调用compile时,Emacs打开一个新的缓冲区(Erlang)。它的大小是原始窗口的一半。我怎样才能控制这个缓冲区的大小?

谢谢。

I use GNU/Emacs for Erlang programming. I compile my code by issuing C-c C-k. When I call compile, Emacs opens a new buffer (Erlang). It's half the size of the original window. How can I control the size of this buffer?

Thank you.

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

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

发布评论

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

评论(2

星光不落少年眉 2024-10-12 04:15:00

你可以尝试:

(setq compilation-window-height 15)

You could try:

(setq compilation-window-height 15)
东走西顾 2024-10-12 04:15:00

我不确定 Erlang 模式如何进行窗口分割。一般来说,主框架使用 split-window-vertically 垂直分割为 2 个窗口,它采用 SIZE 参数来控制窗口的大小(请查看文档进一步的细节)。您可以查看您的 erlang 编译命令是否使用此命令并尝试包装/建议它。

I'm not sure how Erlang mode does the window splitting. Generally speaking though, the main frame is split into 2 windows vertically using split-window-vertically which takes a SIZE argument to control the size of the window (check the documentation for further details). You can see if your erlang compilation command uses this and try wrapping/advising it.

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