Sfoglia il codice sorgente

Fix some dired-hide-details settings

pull/5/head
10sr 9 anni fa
parent
commit
1d84c08305
1 ha cambiato i file con 4 aggiunte e 1 eliminazioni
  1. +4
    -1
      emacs.el

+ 4
- 1
emacs.el Vedi File

@@ -1851,6 +1851,7 @@ the list."

(setq dired-dwim-target t)
(setq dired-hide-details-hide-symlink-targets nil)
(setq dired-hide-details-hide-information-lines nil)

;; (add-hook 'dired-after-readin-hook
;; 'my-replace-nasi-none)
@@ -1892,7 +1893,9 @@ the list."
(local-set-key (kbd "<right>") 'my-dired-scroll-down)
(local-set-key (kbd "ESC p") 'my-dired-scroll-up)
(local-set-key (kbd "ESC n") 'my-dired-scroll-down)
(dired-hide-details-mode t)
(when (fboundp 'dired-hide-details-mode)
(dired-hide-details-mode t)
(local-set-key "l" 'dired-hide-details-mode))
(let ((file "._Icon\015"))
(when nil (file-readable-p file)
(delete-file file)))))


Caricamento…
Annulla
Salva