Created
December 5, 2011 03:40
-
-
Save ctanis/1432200 to your computer and use it in GitHub Desktop.
something to cleanup dired mode (especially in the root of a home dir)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun dired-hide-dotfiles() | |
"reload current dired buffer, hiding dotfiles" | |
(interactive) | |
(dired-unmark-all-marks) | |
(dired-mark-files-regexp "^\\.") | |
(dired-do-kill-lines)) | |
(add-hook 'dired-mode-hook | |
'(lambda () | |
(local-set-key "h" 'dired-hide-dotfiles))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment