mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Consider any window with no-other-window a popup
This allows +popup/other (other-popup) to jump to side windows created outside of Doom's popup manager (e.g. treemacs or neotree).
This commit is contained in:
@ -181,7 +181,8 @@ and enables `+popup-buffer-mode'."
|
|||||||
(let ((window (or window (selected-window))))
|
(let ((window (or window (selected-window))))
|
||||||
(and (windowp window)
|
(and (windowp window)
|
||||||
(window-live-p window)
|
(window-live-p window)
|
||||||
(window-parameter window 'popup)
|
(or (window-parameter window 'popup)
|
||||||
|
(window-parameter window 'no-other-window))
|
||||||
window))))
|
window))))
|
||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
|
Reference in New Issue
Block a user