我在终端中使用emacs,因此标题栏不可用,如何查看完整文件路径或至少最后2个文件目录。
答案 0 :(得分:1)
基本上我添加了这个
(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)))))