• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/emacs-93/emacs/lisp/

Lines Matching +defs:global +defs:map

138 ;;  (define-key iswitchb-mode-map " " 'iswitchb-next-match))
212 ;; (add-hook 'iswitchb-define-mode-map-hook
214 ;; iswitchb-mode-map "\C-o"
480 (defvar iswitchb-mode-map
481 (let ((map (make-sparse-keymap)))
482 (set-keymap-parent map minibuffer-local-map)
483 (define-key map "?" 'iswitchb-completion-help)
484 (define-key map "\C-s" 'iswitchb-next-match)
485 (define-key map "\C-r" 'iswitchb-prev-match)
486 (define-key map "\t" 'iswitchb-complete)
487 (define-key map "\C-j" 'iswitchb-select-buffer-text)
488 (define-key map "\C-t" 'iswitchb-toggle-regexp)
489 (define-key map "\C-x\C-f" 'iswitchb-find-file)
490 (define-key map "\C-c" 'iswitchb-toggle-case)
491 (define-key map "\C-k" 'iswitchb-kill-buffer)
492 (define-key map "\C-m" 'iswitchb-exit-minibuffer)
493 map)
496 (defvar iswitchb-global-map
497 (let ((map (make-sparse-keymap)))
503 (define-key map (vector 'remap (car b)) (cdr b))
504 (substitute-key-definition (car b) (cdr b) map global-map)))
505 map)
543 (defun iswitchb-define-mode-map ()
548 (let (map)
550 ;;(or iswitchb-mode-map
552 (setq map (copy-keymap minibuffer-local-map))
553 (define-key map "?" 'iswitchb-completion-help)
554 (define-key map "\C-s" 'iswitchb-next-match)
555 (define-key map "\C-r" 'iswitchb-prev-match)
556 (define-key map "\t" 'iswitchb-complete)
557 (define-key map "\C-j" 'iswitchb-select-buffer-text)
558 (define-key map "\C-t" 'iswitchb-toggle-regexp)
559 (define-key map "\C-x\C-f" 'iswitchb-find-file)
560 (define-key map "\C-n" 'iswitchb-toggle-ignore)
561 (define-key map "\C-c" 'iswitchb-toggle-case)
562 (define-key map "\C-k" 'iswitchb-kill-buffer)
563 (define-key map "\C-m" 'iswitchb-exit-minibuffer)
564 (setq iswitchb-mode-map map)
565 (run-hooks 'iswitchb-define-mode-map-hook)))
574 \\<iswitchb-mode-map>
639 (iswitchb-define-mode-map)
651 ((minibuffer-local-completion-map iswitchb-mode-map)
1146 (global-set-key "\C-xb" 'iswitchb-buffer)
1147 (global-set-key "\C-x4b" 'iswitchb-buffer-other-window)
1148 (global-set-key "\C-x4\C-o" 'iswitchb-display-buffer)
1149 (global-set-key "\C-x5b" 'iswitchb-buffer-other-frame))
1217 (define-key iswitchb-mode-map '[backspace] 'backward-delete-char)
1218 (define-key iswitchb-mode-map '[(meta backspace)] 'backward-kill-word))
1221 (add-hook 'iswitchb-define-mode-map-hook
1452 "Toggle Iswitchb global minor mode.
1456 nil nil iswitchb-global-map :global t :group 'iswitchb