Skip to content

Commit

Permalink
Fix source buffer being displayed in minibuffer
Browse files Browse the repository at this point in the history
If minibuffer is active during stopped event, source buffer will be
displayed in minibuffer window.
  • Loading branch information
svaante committed Aug 13, 2024
1 parent fc502cf commit 7b432a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dape.el
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ Each element should look like (MIME-TYPE . MODE) where
`((display-buffer-use-some-window display-buffer-pop-up-window)
(some-window
. (lambda (&rest _)
(cl-loop for w in (window-list) unless
(cl-loop for w in (window-list nil 'skip-minibuffer) unless
(buffer-match-p '(or (derived-mode . dape-shell-mode)
(derived-mode . dape-repl-mode)
(derived-mode . dape-memory-mode)
Expand Down

0 comments on commit 7b432a8

Please sign in to comment.