1
Làm cách nào để có được Dired để không hiển thị một số tệp nhất định?
Để bắt đầu, tôi muốn tất cả các tệp * ~ không được hiển thị trong Dired. EDIT: Dưới đây đã làm việc: (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 …