From 8c41362312916d6c8f1222f597703f72f98419c0 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sun, 23 Jul 2017 12:02:57 +0200 Subject: [PATCH] =?UTF-8?q?[Dired]=20Update=20=E2=80=98dired-jump-to-top?= =?UTF-8?q?=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since we are excluding ‘.’ and ‘..’ now, jumping to the first line needs to be updated. --- site-lisp/db-utils.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site-lisp/db-utils.el b/site-lisp/db-utils.el index 79dbb4e..b114a27 100644 --- a/site-lisp/db-utils.el +++ b/site-lisp/db-utils.el @@ -222,7 +222,7 @@ If FILE is not given, prompt for one." "Jump to first non-trivial line in dired." (interactive) (beginning-of-buffer) - (dired-next-line 4)) + (dired-next-line 2)) (defun dired-jump-to-bottom () "Jump to last non-trivial line in dired."