Variable: iswitchb-mode-map
iswitchb-mode-map is a variable defined in iswitchb.el.gz.
Value
Large value
<XF86Back> previous-history-element
<XF86Forward> next-history-element
<down> next-line-or-history-element
<kp-4> tpu-search-forward-exit
<kp-5> tpu-search-backward-exit
<kp-enter> exit-minibuffer
<next> next-history-element
<prior> previous-history-element
<up> previous-line-or-history-element
? iswitchb-completion-help
C-, iswitchb-prev-match
C-. iswitchb-next-match
C-<tab> file-cache-minibuffer-complete
C-c iswitchb-toggle-case
C-g minibuffer-keyboard-quit
C-j exit-minibuffer
C-j iswitchb-select-buffer-text
C-k iswitchb-kill-buffer
C-r iswitchb-prev-match
C-s iswitchb-next-match
C-t iswitchb-toggle-regexp
C-x <down> minibuffer-complete-defaults
C-x <up> minibuffer-complete-history
C-x C-f iswitchb-find-file
M-< minibuffer-beginning-of-buffer
M-n next-history-element
M-p previous-history-element
M-r previous-matching-history-element
M-s next-matching-history-element
RET exit-minibuffer
RET iswitchb-exit-minibuffer
TAB iswitchb-complete
TAB self-insert-command
Documentation
Minibuffer keymap for iswitchb-buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/iswitchb.el.gz
(defvar iswitchb-mode-map
(let ((map (make-sparse-keymap)))
(set-keymap-parent map minibuffer-local-map)
(define-key map "?" #'iswitchb-completion-help)
(define-key map "\C-s" #'iswitchb-next-match)
(define-key map "\C-r" #'iswitchb-prev-match)
(define-key map [?\C-.] #'iswitchb-next-match)
(define-key map [?\C-,] #'iswitchb-prev-match)
(define-key map "\t" #'iswitchb-complete)
(define-key map "\C-j" #'iswitchb-select-buffer-text)
(define-key map "\C-t" #'iswitchb-toggle-regexp)
(define-key map "\C-x\C-f" #'iswitchb-find-file)
(define-key map "\C-c" #'iswitchb-toggle-case)
(define-key map "\C-k" #'iswitchb-kill-buffer)
(define-key map "\C-m" #'iswitchb-exit-minibuffer)
map)
"Minibuffer keymap for `iswitchb-buffer'.")