diff options
| author | Craig Jennings <c@cjennings.net> | 2025-10-25 16:39:41 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-10-25 16:39:41 -0500 |
| commit | 13dc200e474b89cf445629338beb4fe6af668a0b (patch) | |
| tree | 0641ce304b41235cb40cb1d282e23afa4aa66a6b | |
| parent | 25801d3eadcb81daae57d8229acd7e80849a1b18 (diff) | |
| download | dotemacs-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.el | 2 |
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) |
