Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在解释我需要什么时遇到问题,这就是为什么我找不到它(可能),但我会尽力而为。
我需要在模式行顶部的一行文本,有点像缓冲区中的页脚。它用于显示帮助,因此with-electric-help非常接近它,除了焦点存在问题(我可以将焦点移回原始窗口,但键绑定将是帮助缓冲区 - 不好)。
with-electric-help
理想情况下,它只是位于模式行顶部的一行文本(不随缓冲区滚动)。
我只创建一个单独的缓冲区的问题:我不知道如何找出用户从以前显示“小缓冲区”的缓冲区中删除了焦点,所以我不知道什么时候隐藏它。
标题行听起来像它会做你想做的事。它与模式行基本相同,除了几乎没有人使用它并且它出现在窗口的顶部。
(setq header-line-format "some text")
甚至更高级,您可以即时评估事物并设置面孔:
(setq header-line-format '(:eval (propertize (format "%d" (buffer-size)) 'face 'modeline-inactive)))