Como obtenho o Dired para não exibir certos arquivos?

1

Para começar, gostaria que todos os arquivos * ~ não fossem exibidos em Dired.

EDIT: O abaixo funcionou:

(add-hook 'dired-load-hook
      (lambda ()
        (load "dired-x")
        ;; Set dired-x global variables here.  For example:
        ;; (setq dired-guess-shell-gnutar "gtar")
        ;; (setq dired-x-hands-off-my-keys nil)
        ))
(setq dired-omit-files "^#\|~$")
(add-hook 'dired-mode-hook
      (lambda ()
        ;; Set dired-x buffer-local variables here.  For example:
        (dired-omit-mode 1)
        ))
    
por Loren 03.05.2011 / 02:26

1 resposta

2

Dê uma olhada no modo dired-omit :

Dired-Omit minor mode (indicator Omit):
Toggle Dired-Omit mode.
With numeric ARG, enable Dired-Omit mode if ARG is positive, disable
otherwise.  Enabling and disabling is buffer-local.
If enabled, "uninteresting" files are not listed.
Uninteresting files are those whose filenames match regexp 'dired-omit-files',
plus those ending with extensions in 'dired-omit-extensions'

dired-omit faz parte de dired-x .

    
por 08.05.2011 / 14:19

Tags