• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/emacs-92/emacs/lisp/

Lines Matching defs:minibuffer

50 ;; the completion feedback in the minibuffer.
143 ;; line of the minibuffer. In Emacs 21, the variable
144 ;; `resize-mini-windows' controls how many lines of the minibuffer can
146 ;; `resize-minibuffer-mode'. You can also limit iswitchb so that it
148 ;; `iswitchb-minibuffer-setup-hook'.
210 ;; (delete-minibuffer-contents))
298 "*If non-nil, limit the number of names shown in the minibuffer.
396 (defcustom iswitchb-minibuffer-setup-hook nil
397 "Iswitchb-specific customization of minibuffer setup.
399 This hook is run during minibuffer setup iff `iswitchb' will be active.
401 \(add-hook 'iswitchb-minibuffer-setup-hook
403 will constrain the minibuffer to a maximum height of 3 lines when
448 "Point where minibuffer input ends and completion info begins.
463 interfere with other minibuffer usage.")
482 (set-keymap-parent map minibuffer-local-map)
492 (define-key map "\C-m" 'iswitchb-exit-minibuffer)
533 "Value we expect to be returned by `minibuffer-depth' in the minibuffer.")
536 "Non-nil if we have just inserted a common match in the minibuffer.")
552 (setq map (copy-keymap minibuffer-local-map))
563 (define-key map "\C-m" 'iswitchb-exit-minibuffer)
651 ((minibuffer-local-completion-map iswitchb-mode-map)
652 ;; Record the minibuffer depth that we expect to find once
653 ;; the minibuffer is set up and iswitchb-entryfn-p is called.
654 (iswitchb-minibuf-depth (1+ (minibuffer-depth)))
728 (exit-minibuffer))
735 ;; found something to complete, so put it in the minibuffer.
739 (delete-region (minibuffer-prompt-end) (point))
774 (defun iswitchb-exit-minibuffer ()
775 "Exit minibuffer, but make sure we have a match if one is needed."
788 (exit-minibuffer))
794 (exit-minibuffer))
1141 adds a hook to the minibuffer.
1145 (add-hook 'minibuffer-setup-hook 'iswitchb-minibuffer-setup)
1189 ;; The first time we enter the minibuffer, Emacs puts up the default
1195 ;; show the default the first time we enter the minibuffer.
1198 "Display default buffer when first entering minibuffer.
1207 (add-hook 'iswitchb-minibuffer-setup-hook
1227 "Find matching buffers and display a list in the minibuffer.
1232 (let ((contents (buffer-substring (minibuffer-prompt-end) (point-max)))
1391 (defun iswitchb-minibuffer-setup ()
1392 "Set up minibuffer for `iswitchb-buffer'.
1393 Copied from `icomplete-minibuffer-setup-hook'."
1398 (run-hooks 'iswitchb-minibuffer-setup-hook)))
1421 ;; Reestablish the local variable 'cause minibuffer-setup is weird:
1427 (eq iswitchb-minibuf-depth (minibuffer-depth)))
1458 (add-hook 'minibuffer-setup-hook 'iswitchb-minibuffer-setup)
1459 (remove-hook 'minibuffer-setup-hook 'iswitchb-minibuffer-setup)))