1

我想使用标题栏来显示一些对 emacs 有用的信息。目前我使用框架标题格式。但是,只有当 emacs “想要”更新它时,标题栏才会更新。例如保存文件,或到达缓冲区的顶部或底部。是否有手动更新标题栏的命令?

我使用的命令是

(setq frame-title-format 
  '("%b  %*  " 
    (:eval (number-to-string (wy-count-word-section))) 
    " / %i" "%n"))

其中 wy-count-word-section 是一个数值变量。

4

1 回答 1

2

像 modeline 一样,使用force-mode-line-update也会更新框架标题。

于 2013-01-09T09:45:59.860 回答