We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
+dired-here
1 parent b044298 commit d91071dCopy full SHA for d91071d
core/me-builtin.el
@@ -278,7 +278,12 @@ or file path may exist now."
278
:hook (dired-mode . turn-on-gnus-dired-mode)
279
:custom
280
(dired-dwim-target t)
281
- (dired-auto-revert-buffer t))
+ (dired-auto-revert-buffer t)
282
+ :init
283
+ (defun +dired-here (&optional switches)
284
+ "Run `dired' in DIR or in the current directory."
285
+ (interactive (list (when current-prefix-arg (read-string "Dired listing switches: " dired-listing-switches))))
286
+ (dired default-directory switches)))
287
288
(use-package doc-view
289
0 commit comments