Skip to content

Instantly share code, notes, and snippets.

@Superbil
Forked from letoh/dired-filter.el
Last active December 17, 2015 06:19
Show Gist options
  • Save Superbil/5564187 to your computer and use it in GitHub Desktop.
Save Superbil/5564187 to your computer and use it in GitHub Desktop.
(require-package 'dired+)
(defun dired-show-only (regexp)
(interactive "sFiles to show (regexp): ")
(dired-mark-files-regexp regexp)
(dired-toggle-marks)
(dired-do-kill-lines))
(eval-after-load 'dired+
'(progn
(define-key dired-mode-map (kbd "/") 'dired-show-only)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment