更改emacs 24中的状态缓冲区以显示文件路径

时间:2015-01-07 06:05:05

标签: emacs emacs24

我在终端中使用emacs,因此标题栏不可用,如何查看完整文件路径或至少最后2个文件目录。

enter image description here

1 个答案:

答案 0 :(得分:1)

我从https://emacs.stackexchange.com/questions/2338/how-can-i-display-the-parent-directory-of-the-current-file-in-the-modeline帖子

得到了答案

基本上我添加了这个

(setq-default mode-line-buffer-identification
              (let ((orig  (car mode-line-buffer-identification)))
                `(:eval (cons (concat ,orig (abbreviate-file-name default-directory))
                              (cdr mode-line-buffer-identification)))))