Skip to content

Commit 4912e49

Browse files
darkfelinesyl20bnr
authored andcommitted
Fix dired-x dired-jump autoload
1 parent d463f6a commit 4912e49

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

layers/+distribution/spacemacs-base/packages.el

+8
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
(bind-map :step pre)
1616
bookmark
1717
diminish
18+
(dired-x :location built-in)
1819
(electric-indent-mode :location built-in)
1920
ediff
2021
eldoc
@@ -106,6 +107,13 @@
106107
(when (eval-when-compile (version< "24.3.1" emacs-version))
107108
(diminish 'subword-mode))))))
108109

110+
(defun spacemacs-base/init-dired-x ()
111+
(autoload 'dired-jump "dired-x"
112+
"Jump to Dired buffer corresponding to current buffer." t)
113+
114+
(autoload 'dired-jump-other-window "dired-x"
115+
"Like \\[dired-jump] (dired-jump) but in other window." t))
116+
109117
(defun spacemacs-base/init-eldoc ()
110118
(use-package eldoc
111119
:defer t

layers/+vim/vinegar/keybindings.el

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
(require 'dired-x)
21
(define-key evil-normal-state-map (kbd "-") 'dired-jump)
32

43
(add-hook 'dired-mode-hook 'vinegar/dired-setup)

0 commit comments

Comments
 (0)