Variable: iswitchb-global-map

iswitchb-global-map is a variable defined in iswitchb.el.gz.

Value

C-x 4 C-o  iswitchb-display-buffer
C-x 4 b    iswitchb-buffer-other-window
C-x 5 b    iswitchb-buffer-other-frame
C-x b      iswitchb-buffer

Documentation

Global keymap for iswitchb-mode(var)/iswitchb-mode(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/iswitchb.el.gz
(defvar iswitchb-global-map
  (let ((map (make-sparse-keymap)))
    (dolist (b '((switch-to-buffer . iswitchb-buffer)
                 (switch-to-buffer-other-window . iswitchb-buffer-other-window)
                 (switch-to-buffer-other-frame . iswitchb-buffer-other-frame)
                 (display-buffer . iswitchb-display-buffer)))
      (define-key map (vector 'remap (car b)) (cdr b)))
    map)
  "Global keymap for `iswitchb-mode'.")