Function: bs-select-other-frame
bs-select-other-frame is an interactive and byte-compiled function
defined in bs.el.gz.
Signature
(bs-select-other-frame)
Documentation
Select current line's buffer in new created frame.
Leave Buffer Selection Menu.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/bs.el.gz
(defun bs-select-other-frame ()
"Select current line's buffer in new created frame.
Leave Buffer Selection Menu."
(interactive)
(let ((buffer (bs--current-buffer)))
(bury-buffer (current-buffer))
(quit-window)
(switch-to-buffer-other-frame buffer)))