diff options
author | Alan Pearce | 2016-03-04 10:35:32 +0100 |
---|---|---|
committer | Alan Pearce | 2016-03-04 10:35:32 +0100 |
commit | 6ed46d62249d7ada3f1203a6f03d7fa8bc58ae0c (patch) | |
tree | 5b5fe85d4eb7f0032a7bfa1aa80c3466b8f58074 /tag-emacs | |
parent | b2ba1b73df5044b461055e078e17378eccf1b25f (diff) | |
download | nixfiles-6ed46d62249d7ada3f1203a6f03d7fa8bc58ae0c.tar.lz nixfiles-6ed46d62249d7ada3f1203a6f03d7fa8bc58ae0c.tar.zst nixfiles-6ed46d62249d7ada3f1203a6f03d7fa8bc58ae0c.zip |
Emacs: Install and configure dired-narrow
Diffstat (limited to 'tag-emacs')
-rw-r--r-- | tag-emacs/emacs.d/init.org | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index 701a9cbf..280dfa37 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -1079,6 +1079,19 @@ Expand subfolders like a tree inside the parent (bind-key "i" #'dired-subtree-toggle dired-mode-map)))) #+END_SRC +** Dired-narrow +One can already use dired with wildcards to browse a filtered +directory listing, but it opens a new buffer. Dired-narrow is a +slightly nicer interface: with a currently-open dired buffer, use =/= +to start filtering, =RET= to complete the filter and =g= to refresh +the buffer, removing the filter. + +#+BEGIN_SRC emacs-lisp + (use-package dired-narrow + :bind (:map dired-mode-map + ("/" . dired-narrow))) +#+END_SRC + * Documentation ** ehelp |