소스 검색

Fix du

master
10sr 5 년 전
부모
커밋
5d9c88fac8
로그인 계정: 10sr GPG 키 ID: 7BEC428194130EB2
1개의 변경된 파일10개의 추가작업 그리고 5개의 파일을 삭제
  1. +10
    -5
      emacs.el

+ 10
- 5
emacs.el 파일 보기

@@ -1845,14 +1845,19 @@ ARG is num to show, or defaults to 7."
(defun dired-get-file-info ()
"Print information of current line file."
(interactive)
(let ((f (shell-quote-argument (dired-get-filename t))))
(if (file-directory-p f)
(let* ((file (dired-get-filename t))
(quoted (shell-quote-argument file)))
(if (file-directory-p file)
(progn
(message "Calculating disk usage...")
(shell-command (concat "du -hsD "
f)))
(let ((du (or (executable-find "gdu")
(executable-find "du")
(error "du not found"))))
(shell-command (concat du
" -hsD "
quoted))))
(shell-command (concat "file "
f)))))
quoted)))))

(defun my-dired-scroll-up ()
"Scroll up."


불러오는 중...
취소
저장