equal
deleted
inserted
replaced
676 |
676 |
677 ;; -ls produce very noisy output: |
677 ;; -ls produce very noisy output: |
678 ;; (setq find-ls-option '("-ls" . "")) |
678 ;; (setq find-ls-option '("-ls" . "")) |
679 ;; So I use next expression, which work with GNU find, I replace %s with '0' |
679 ;; So I use next expression, which work with GNU find, I replace %s with '0' |
680 ;; to avoid unnecessary sys calls and this make output aligned by column: |
680 ;; to avoid unnecessary sys calls and this make output aligned by column: |
681 (setq find-ls-option '("-printf ' -rw-rw-rw- 0 %AY-%Am-%Ad %AH:%AM %p\n'" . "")) |
681 (setq find-ls-option '("-printf ' -rw-rw-rw- %9s %AY-%Am-%Ad %AH:%AM %p\n'" . "")) |
682 |
682 |
683 ;; Do not set t because some grep do not has --color options. |
683 ;; Do not set t because some grep do not has --color options. |
684 (setq grep-highlight-matches nil) |
684 (setq grep-highlight-matches nil) |
685 (setq grep-use-null-device nil) |
685 (setq grep-use-null-device nil) |
686 |
686 |