Function: iswitchb-buffer
iswitchb-buffer is an interactive and byte-compiled function defined
in iswitchb.el.gz.
Signature
(iswitchb-buffer)
Documentation
Switch to another buffer.
The buffer name is selected interactively by typing a substring. The
buffer is displayed according to iswitchb-default-method -- the
default is to show it in the same window, unless it is already visible
in another frame.
For details of keybindings, do C-h f (describe-function) iswitchb.
Probably introduced at or before Emacs version 20.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/iswitchb.el.gz
(defun iswitchb-buffer ()
"Switch to another buffer.
The buffer name is selected interactively by typing a substring. The
buffer is displayed according to `iswitchb-default-method' -- the
default is to show it in the same window, unless it is already visible
in another frame.
For details of keybindings, do `\\[describe-function] iswitchb'."
(interactive)
(setq iswitchb-method iswitchb-default-method)
(iswitchb))