Emacsで編集中のファイルのパスが知りたい場合はbuffer-file-name
を使うと表示できるみたいです。
具体的には、編集中のファイル中のどこかに
(buffer-file-name)
と入力して、)
のとなりでC-x C-e
と入力するとファイルパスが表示されます。
.emacs
毎回(buffer-file-name)
と入力するのが面倒な場合は.emacs
に
(defun show-file-name () (interactive) (message (buffer-file-name))) (global-set-key "\C-cz" 'show-file-name)
を追加すれば、M-x show-file-name
もしくはC-c z
の入力でファイルパスを表示できるようになります。
リンク
emacs – The function to show current file’s full path in mini buffer – Stack Overflow
https://stackoverflow.com/questions/3669511/the-function-to-show-current-files-full-path-in-mini-buffer