From b7f4d312186ff7709d4a3ec02c15f22e04bac0f8 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 8 Apr 2025 02:51:05 -0400 Subject: [PATCH] fix(dired): dirvish: "window is dedicated to *dirvish-parent-...*" Seems the naming convention of dirvish windows has changed at some point, so the popup module's fallback rules were catching them, causing each of Dirvish's side windows to be treated as implicit popups. Fix: #8347 --- modules/emacs/dired/config.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/emacs/dired/config.el b/modules/emacs/dired/config.el index 530297a07..f693799cd 100644 --- a/modules/emacs/dired/config.el +++ b/modules/emacs/dired/config.el @@ -79,7 +79,7 @@ Fixes #3939: unsortable dired entries on Windows." (advice-add #'dired-noselect :around #'dirvish-dired-noselect-a) :config (dirvish-override-dired-mode) - (set-popup-rule! "^ ?\\*\\(?:Dirvish\\|SIDE :: \\).*" :ignore t) + (set-popup-rule! "^ ?\\*\\(?:[Dd]irvish\\|SIDE :: \\).*" :ignore t) ;; Fixes #8038. This setting is for folks who expect to be able to switch back ;; to dired buffers where the file is opened from. In other cases, don't