标题栏自定义,文件名显示
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了标题栏自定义,文件名显示相关的知识,希望对你有一定的参考价值。
By default, Emacs displays on the titlebar (I mean GUI Emacs) [email protected] There is a way to modify this, using (setq frame-title-format "my title").How to display [email protected]: ~/dir/file (or buffer name in case of e.i. *scratch*)? Add it to your .emacs:
(add-hook 'window-configuration-change-hook (lambda () (setq frame-title-format (concat invocation-name "@" system-name ": " (replace-regexp-in-string (concat "/home/" user-login-name) "~" (or buffer-file-name "%b"))))))
以上是关于标题栏自定义,文件名显示的主要内容,如果未能解决你的问题,请参考以下文章