Skip to content

Instantly share code, notes, and snippets.

@ctanis
Created December 5, 2011 03:40
Show Gist options
  • Save ctanis/1432200 to your computer and use it in GitHub Desktop.
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)
(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