Windows 10, Emacs 25.1.
Suppose I open file D:/temp/test/myfile.txt. But in the in the mode line show only file name (myfile.txt).
But I need to show FULL path to file: D:/temp/test/myfile.txt
This path can show on mode line OR in the frame title. How I can do this?
C-h v mode-line-format
. I would only add that that same docstring explains the meaning of identifiers like%b
,%f
, and many more, which apply to bothmode-line-format
andframe-title-format
. FromC-h v frame-title-format
: This variable has the same structure as ‘mode-line-format’, except that the %c, %C, and %l constructs are ignored. It is used only on frames for which no explicit name has been set (see ‘modify-frame-parameters’). – Kaushal Modi Jun 08 '17 at 16:52