forked from Github/emacs
Fix lisp/bs.el change in commit e0a057c16b of 2022-12-07
* lisp/bs.el (bs-default-action-list): Before creating a window first try `display-buffer-reuse-window', but make sure it never chooses a window in another frame.
This commit is contained in:
parent
b8eef7b8c1
commit
d9ab1027b1
1 changed files with 3 additions and 1 deletions
|
|
@ -488,7 +488,9 @@ Used internally, only.")
|
|||
"<mouse-2>" #'bs-mouse-select
|
||||
"<mouse-3>" #'bs-mouse-select-other-frame)
|
||||
|
||||
(defcustom bs-default-action-list '((display-buffer-below-selected)
|
||||
(defcustom bs-default-action-list '((display-buffer-reuse-window
|
||||
display-buffer-below-selected)
|
||||
(reusable-frames . nil)
|
||||
(window-height . window-min-height))
|
||||
"Default action list for showing the '*bs-selection*' buffer.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue