Function: widget-browse-other-window
widget-browse-other-window is an autoloaded, interactive and
byte-compiled function defined in wid-browse.el.gz.
Signature
(widget-browse-other-window &optional WIDGET)
Documentation
Show widget browser for WIDGET in other window.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/wid-browse.el.gz
;;;###autoload
(defun widget-browse-other-window (&optional widget)
"Show widget browser for WIDGET in other window."
(interactive)
(let ((window (selected-window)))
(switch-to-buffer-other-window "*Browse Widget*")
(if widget
(widget-browse widget)
(call-interactively 'widget-browse))
(select-window window)))