From 857bb85e664bce4621eaee5be2ed6ac880978354 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Sat, 17 Jun 2017 21:30:33 -0400 Subject: [PATCH] Adds custom dired functions --- emacs/wc-dired-functions.lisp | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 emacs/wc-dired-functions.lisp diff --git a/emacs/wc-dired-functions.lisp b/emacs/wc-dired-functions.lisp new file mode 100644 index 000000000..a6b446976 --- /dev/null +++ b/emacs/wc-dired-functions.lisp @@ -0,0 +1,4 @@ +(defun wc/dired-up-directory () + "Moves up a directory in `dired' killing the previous `dired' buffer." + (interactive) + (find-alternate-file ".."))