branch: externals/popper commit faf155059e519fb036324af579c342365795dbbb Author: Karthik Chikmagalur <karthikchikmaga...@gmail.com> Commit: Karthik Chikmagalur <karthikchikmaga...@gmail.com>
popper: Change window slot of default display function * popper.el (popper-display-popup-at-bottom): Change the window slot used by Popper's default display function to be the same as the one which-key uses (#72). This makes which-key use Popper's window, and then restore it afterwards. It's not possible to use the two windows side-by-side anyway since which-key's display is ordered row-first. --- popper.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/popper.el b/popper.el index 3c6f2fca67..2b16e269b9 100644 --- a/popper.el +++ b/popper.el @@ -280,7 +280,7 @@ such alists." (append alist `((window-height . ,popper-window-height) (side . bottom) - (slot . 1))))) + (slot . 0))))) (defun popper-popup-p (buf) "Predicate to test if buffer BUF qualifies for popper handling.