Created
June 24, 2010 12:45
-
-
Save 10sr/451402 to your computer and use it in GitHub Desktop.
diredでミニバッファに現在行の内容表示
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (defun dired-print-current-dir-and-file () | |
| (message (concat default-directory | |
| " " | |
| (buffer-substring-no-properties | |
| (point-at-bol) (point-at-eol))))) | |
| (defadvice dired-next-line (after dired-next-line-print-directory activate) | |
| "print current directory when go down line" | |
| (dired-print-current-dir-and-file)) | |
| (defadvice dired-previous-line (after dired-previous-line-print-directory activate) | |
| "print current directory when go up line" | |
| (dired-print-current-dir-and-file)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment