更改模型行的位置

发布于 2024-11-17 04:10:41 字数 54 浏览 2 评论 0原文

是否可以更改模型行的位置,使其出现在缓冲区的顶部而不是主缓冲区的底部?如果是这样,我该怎么办?

Is it possible to change the position of modeline so that it appears at the top of the buffer instead of at the bottom of the main buffers? If so, how can I do it?

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

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

发布评论

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

评论(1

那请放手 2024-11-24 04:10:41

你可以有一个标题行,然后关闭 mode-line with:

(setq-default header-line-format mode-line-format)
(setq-default mode-line-format nil)

这似乎至少可以满足(我认为)您想要的基本用法。打开新文件和缓冲区会将标题行保留在适当的位置,并且没有模式行。

阅读有关模式行格式<的更多文档/a>.

You can have a header-line, and turn off the mode-line with:

(setq-default header-line-format mode-line-format)
(setq-default mode-line-format nil)

This seems to do what (I think) you want for basic usage at least. Opening new files and buffers keeps the header line in place and doesn't have a mode line.

Read more of the documentation about Mode-Line Format.

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