如何调整缓冲区大小,使其只占据屏幕的一小部分?

发布于 2024-12-07 07:59:52 字数 96 浏览 0 评论 0原文

在 Emacs 中,如何调整缓冲区大小,使其只占据屏幕的一小部分?

有什么办法吗?

我想让 src 占据屏幕的 70%,文件管理器占据另外 30%

In Emacs how can I resize a buffer so it only takes a small part of the screen ?

Is there any way ?

I would like to have the src taking 70% of the screen and a file manager in the other 30%

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

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

发布评论

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

评论(2

枫以 2024-12-14 07:59:53

对各个缓冲区使用单独的窗口管理器框架(默认情况下)。自动收缩框架以适应缓冲区内容。

请参阅 一对一 Emacs,特别是库 fit-frame.elautofit-frame.el

Use separate window-manager frames for individual buffers (by default). Automatically shrink-fit the frames to fit the buffer content.

See One-On-One Emacs, in particular, libraries fit-frame.el and autofit-frame.el.

千秋岁 2024-12-14 07:59:52

将当前帧上当前窗口的宽度设置为 ~ 70%:

(window-resize nil (- (truncate (* 0.7 (frame-width))) (window-width)) t)

其他窗口自动缩小。如果您想调整多个,那就会变得更加困难。

作为命令:

(defun window-resize-to-70-percent ()
  (interactive)
  (window-resize nil (- (truncate (* 0.7 (frame-width))) (window-width)) t))

Set width of current window on current frame to ~ 70%:

(window-resize nil (- (truncate (* 0.7 (frame-width))) (window-width)) t)

The other windows are shrunk automatically. If you want to adjust more than one it gets more difficult.

As command:

(defun window-resize-to-70-percent ()
  (interactive)
  (window-resize nil (- (truncate (* 0.7 (frame-width))) (window-width)) t))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文