aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-10-25 16:39:41 -0500
committerCraig Jennings <c@cjennings.net>2025-10-25 16:39:41 -0500
commit13dc200e474b89cf445629338beb4fe6af668a0b (patch)
tree0641ce304b41235cb40cb1d282e23afa4aa66a6b
parent25801d3eadcb81daae57d8229acd7e80849a1b18 (diff)
downloaddotemacs-13dc200e474b89cf445629338beb4fe6af668a0b.tar.gz
dotemacs-13dc200e474b89cf445629338beb4fe6af668a0b.zip
fix:dwim-shell: ensure dirvish starts dwim-shell
Update `use-package` to load `dwim-shell-command` after both `dired` and `dirvish`, ensuring proper integration and compatibility with the additional package.
-rw-r--r--modules/dwim-shell-config.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/dwim-shell-config.el b/modules/dwim-shell-config.el
index 9c42c9a61..a05646b21 100644
--- a/modules/dwim-shell-config.el
+++ b/modules/dwim-shell-config.el
@@ -99,7 +99,7 @@
;; ----------------------------- Dwim Shell Command ----------------------------
(use-package dwim-shell-command
- :after dired
+ :after (dired dirvish)
:bind (("<remap> <shell-command>" . dwim-shell-command)
:map dired-mode-map
("<remap> <dired-do-async-shell-command>" . dwim-shell-command)