Emacs erlang 缓冲区
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以尝试:
You could try:
我不确定 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 aSIZE
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.