2000-05-24 15:12:19 +00:00
|
|
|
|
;;; icomplete.el --- minibuffer completion incremental feedback
|
1994-09-18 08:27:12 +00:00
|
|
|
|
|
2013-01-01 09:11:05 +00:00
|
|
|
|
;; Copyright (C) 1992-1994, 1997, 1999, 2001-2013 Free Software
|
|
|
|
|
;; Foundation, Inc.
|
1993-11-24 00:36:31 +00:00
|
|
|
|
|
1999-11-21 13:44:26 +00:00
|
|
|
|
;; Author: Ken Manheimer <klm@i.am>
|
|
|
|
|
;; Maintainer: Ken Manheimer <klm@i.am>
|
|
|
|
|
;; Created: Mar 1993 Ken Manheimer, klm@nist.gov - first release to usenet
|
|
|
|
|
;; Last update: Ken Manheimer <klm@i.am>, 11/18/1999.
|
1995-10-30 17:35:01 +00:00
|
|
|
|
;; Keywords: help, abbrev
|
1993-11-24 00:36:31 +00:00
|
|
|
|
|
1994-09-18 08:27:12 +00:00
|
|
|
|
;; This file is part of GNU Emacs.
|
1993-11-24 00:36:31 +00:00
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1994-09-18 08:27:12 +00:00
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
1993-11-24 00:36:31 +00:00
|
|
|
|
|
1994-09-18 08:27:12 +00:00
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
1993-12-30 11:56:19 +00:00
|
|
|
|
|
1994-09-18 08:27:12 +00:00
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
1993-11-24 00:36:31 +00:00
|
|
|
|
|
1994-09-18 08:27:12 +00:00
|
|
|
|
;;; Commentary:
|
1993-11-24 00:36:31 +00:00
|
|
|
|
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; Loading this package implements a more fine-grained minibuffer
|
|
|
|
|
;; completion feedback scheme. Prospective completions are concisely
|
|
|
|
|
;; indicated within the minibuffer itself, with each successive
|
|
|
|
|
;; keystroke.
|
|
|
|
|
|
1998-01-24 11:35:59 +00:00
|
|
|
|
;; See `icomplete-completions' docstring for a description of the
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; icomplete display format.
|
|
|
|
|
|
|
|
|
|
;; See the `icomplete-minibuffer-setup-hook' docstring for a means to
|
|
|
|
|
;; customize icomplete setup for interoperation with other
|
|
|
|
|
;; minibuffer-oriented packages.
|
|
|
|
|
|
1999-11-21 13:44:26 +00:00
|
|
|
|
;; To activate icomplete mode, load the package and use the
|
|
|
|
|
;; `icomplete-mode' function. You can subsequently deactivate it by
|
|
|
|
|
;; invoking the function icomplete-mode with a negative prefix-arg
|
|
|
|
|
;; (C-U -1 ESC-x icomplete-mode). Also, you can prevent activation of
|
|
|
|
|
;; the mode during package load by first setting the variable
|
|
|
|
|
;; `icomplete-mode' to nil. Icompletion can be enabled any time after
|
|
|
|
|
;; the package is loaded by invoking icomplete-mode without a prefix
|
|
|
|
|
;; arg.
|
Integrated Emacs 19.34 and XEmacs 19.15
corrections (typos, style, command revisions, etc).
Integrated hacked up XEmacs immediate keybindings display. See
`icomplete-show-key-bindings', `icomplete-get-keys', and
`icomplete-completions'. Doesn't work with mainline GNU
Emacs 19.34 (because the cmdloop doesn't set owindow, and the
current-local-map doesn't take optional buffer arg), so feature
is, by default, inhibited unless we're running in XEmacs.
(icomplete-get-keys): Return keys bound to func name in buffer
"owindow" - since "owindow" is calling-buffer history present
only in XEmacs, this function is only useful in XEmacs.
(icomplete-max-delay-chars, icomplete-compute-delay): New vars.
(icomplete-delay-completions-threshold): New var.
These customize the delay behavior, so that completions don't
intrude as quickly for short input.
1997-05-29 18:18:23 +00:00
|
|
|
|
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; Thanks to everyone for their suggestions for refinements of this
|
|
|
|
|
;; package. I particularly have to credit Michael Cook, who
|
|
|
|
|
;; implemented an incremental completion style in his 'iswitch'
|
|
|
|
|
;; functions that served as a model for icomplete. Some other
|
1998-01-24 11:35:59 +00:00
|
|
|
|
;; contributors: Noah Friedman (restructuring as minor mode), Colin
|
1997-06-15 02:37:58 +00:00
|
|
|
|
;; Rafferty (lemacs reconciliation), Lars Lindberg, RMS, and others.
|
1996-01-14 07:34:30 +00:00
|
|
|
|
|
|
|
|
|
;; klm.
|
1993-12-30 11:56:19 +00:00
|
|
|
|
|
1994-09-18 08:27:12 +00:00
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
;;;_* Provide
|
1993-11-24 00:36:31 +00:00
|
|
|
|
(provide 'icomplete)
|
|
|
|
|
|
1998-01-24 11:35:59 +00:00
|
|
|
|
|
|
|
|
|
(defgroup icomplete nil
|
|
|
|
|
"Show completions dynamically in minibuffer."
|
|
|
|
|
:prefix "icomplete-"
|
|
|
|
|
:group 'minibuffer)
|
|
|
|
|
|
2008-05-29 16:25:12 +00:00
|
|
|
|
(defvar icomplete-prospects-length 80)
|
|
|
|
|
(make-obsolete-variable
|
|
|
|
|
'icomplete-prospects-length 'icomplete-prospects-height "23.1")
|
|
|
|
|
|
2012-11-29 21:32:24 +00:00
|
|
|
|
(defcustom icomplete-separator " | "
|
|
|
|
|
"String used by icomplete to separate alternatives in the minibuffer."
|
|
|
|
|
:type 'string
|
2012-11-30 17:09:55 +00:00
|
|
|
|
:version "24.4")
|
2012-11-29 21:32:24 +00:00
|
|
|
|
|
2013-02-13 15:13:22 +00:00
|
|
|
|
(defcustom icomplete-hide-common-prefix t
|
|
|
|
|
"When non-nil, hide common prefix from completion candidates.
|
|
|
|
|
When nil, show candidates in full."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:version "24.4"
|
|
|
|
|
:group 'icomplete)
|
|
|
|
|
|
|
|
|
|
(defface icomplete-first-match '((t :weight bold))
|
|
|
|
|
"Face used by icomplete for highlighting first match."
|
|
|
|
|
:version "24.4"
|
|
|
|
|
:group 'icomplete)
|
|
|
|
|
|
1999-11-21 13:44:26 +00:00
|
|
|
|
;;;_* User Customization variables
|
2008-05-29 16:25:12 +00:00
|
|
|
|
(defcustom icomplete-prospects-height
|
|
|
|
|
;; 20 is an estimated common size for the prompt + minibuffer content, to
|
|
|
|
|
;; try to guess the number of lines used up by icomplete-prospects-length.
|
|
|
|
|
(+ 1 (/ (+ icomplete-prospects-length 20) (window-width)))
|
|
|
|
|
"Maximum number of lines to use in the minibuffer."
|
2008-05-29 20:05:36 +00:00
|
|
|
|
:type 'integer
|
2008-12-15 16:45:55 +00:00
|
|
|
|
:group 'icomplete
|
|
|
|
|
:version "23.1")
|
1999-11-21 13:44:26 +00:00
|
|
|
|
|
1998-01-24 11:35:59 +00:00
|
|
|
|
(defcustom icomplete-compute-delay .3
|
2008-03-20 09:17:22 +00:00
|
|
|
|
"Completions-computation stall, used only with large-number completions.
|
|
|
|
|
See `icomplete-delay-completions-threshold'."
|
1998-01-24 11:35:59 +00:00
|
|
|
|
:type 'number
|
|
|
|
|
:group 'icomplete)
|
|
|
|
|
|
|
|
|
|
(defcustom icomplete-delay-completions-threshold 400
|
2008-03-20 09:17:22 +00:00
|
|
|
|
"Pending-completions number over which to apply `icomplete-compute-delay'."
|
1998-01-24 11:35:59 +00:00
|
|
|
|
:type 'integer
|
|
|
|
|
:group 'icomplete)
|
|
|
|
|
|
|
|
|
|
(defcustom icomplete-max-delay-chars 3
|
2008-03-20 09:17:22 +00:00
|
|
|
|
"Maximum number of initial chars to apply icomplete compute delay."
|
1998-01-24 11:35:59 +00:00
|
|
|
|
:type 'integer
|
|
|
|
|
:group 'icomplete)
|
|
|
|
|
|
|
|
|
|
(defcustom icomplete-minibuffer-setup-hook nil
|
2008-03-20 09:17:22 +00:00
|
|
|
|
"Icomplete-specific customization of minibuffer setup.
|
1994-09-18 08:27:12 +00:00
|
|
|
|
|
2007-08-08 07:40:09 +00:00
|
|
|
|
This hook is run during minibuffer setup if icomplete is active.
|
1994-09-18 08:27:12 +00:00
|
|
|
|
It is intended for use in customizing icomplete for interoperation
|
2001-01-22 16:03:42 +00:00
|
|
|
|
with other features and packages. For instance:
|
1994-09-18 08:27:12 +00:00
|
|
|
|
|
Integrated Emacs 19.34 and XEmacs 19.15
corrections (typos, style, command revisions, etc).
Integrated hacked up XEmacs immediate keybindings display. See
`icomplete-show-key-bindings', `icomplete-get-keys', and
`icomplete-completions'. Doesn't work with mainline GNU
Emacs 19.34 (because the cmdloop doesn't set owindow, and the
current-local-map doesn't take optional buffer arg), so feature
is, by default, inhibited unless we're running in XEmacs.
(icomplete-get-keys): Return keys bound to func name in buffer
"owindow" - since "owindow" is calling-buffer history present
only in XEmacs, this function is only useful in XEmacs.
(icomplete-max-delay-chars, icomplete-compute-delay): New vars.
(icomplete-delay-completions-threshold): New var.
These customize the delay behavior, so that completions don't
intrude as quickly for short input.
1997-05-29 18:18:23 +00:00
|
|
|
|
\(add-hook 'icomplete-minibuffer-setup-hook
|
1994-09-18 08:27:12 +00:00
|
|
|
|
\(function
|
|
|
|
|
\(lambda ()
|
2001-01-22 16:03:42 +00:00
|
|
|
|
\(make-local-variable 'max-mini-window-height)
|
|
|
|
|
\(setq max-mini-window-height 3))))
|
1994-09-18 08:27:12 +00:00
|
|
|
|
|
2001-01-22 16:03:42 +00:00
|
|
|
|
will constrain Emacs to a maximum minibuffer height of 3 lines when
|
1998-01-24 11:35:59 +00:00
|
|
|
|
icompletion is occurring."
|
|
|
|
|
:type 'hook
|
|
|
|
|
:group 'icomplete)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;_* Initialization
|
1993-11-24 00:36:31 +00:00
|
|
|
|
|
1993-12-30 11:56:19 +00:00
|
|
|
|
;;;_ + Internal Variables
|
2005-03-21 19:19:26 +00:00
|
|
|
|
;;;_ = icomplete-eoinput nil
|
2008-05-22 03:15:32 +00:00
|
|
|
|
(defvar icomplete-overlay (make-overlay (point-min) (point-min) nil t t)
|
|
|
|
|
"Overlay used to display the list of completions.")
|
|
|
|
|
|
1994-09-18 08:27:12 +00:00
|
|
|
|
;;;_ = icomplete-pre-command-hook
|
|
|
|
|
(defvar icomplete-pre-command-hook nil
|
|
|
|
|
"Incremental-minibuffer-completion pre-command-hook.
|
|
|
|
|
|
|
|
|
|
Is run in minibuffer before user input when `icomplete-mode' is non-nil.
|
|
|
|
|
Use `icomplete-mode' function to set it up properly for incremental
|
|
|
|
|
minibuffer completion.")
|
|
|
|
|
(add-hook 'icomplete-pre-command-hook 'icomplete-tidy)
|
|
|
|
|
;;;_ = icomplete-post-command-hook
|
|
|
|
|
(defvar icomplete-post-command-hook nil
|
|
|
|
|
"Incremental-minibuffer-completion post-command-hook.
|
|
|
|
|
|
|
|
|
|
Is run in minibuffer after user input when `icomplete-mode' is non-nil.
|
|
|
|
|
Use `icomplete-mode' function to set it up properly for incremental
|
|
|
|
|
minibuffer completion.")
|
|
|
|
|
(add-hook 'icomplete-post-command-hook 'icomplete-exhibit)
|
|
|
|
|
|
2006-09-23 18:39:22 +00:00
|
|
|
|
;;;_ = icomplete-with-completion-tables
|
2013-09-06 22:46:44 +00:00
|
|
|
|
(defcustom icomplete-with-completion-tables t
|
2006-09-23 18:39:22 +00:00
|
|
|
|
"Specialized completion tables with which icomplete should operate.
|
|
|
|
|
|
|
|
|
|
Icomplete does not operate with any specialized completion tables
|
2013-09-06 22:46:44 +00:00
|
|
|
|
except those on this list."
|
|
|
|
|
:type '(choice (const :tag "All" t)
|
|
|
|
|
(repeat function)))
|
Integrated Emacs 19.34 and XEmacs 19.15
corrections (typos, style, command revisions, etc).
Integrated hacked up XEmacs immediate keybindings display. See
`icomplete-show-key-bindings', `icomplete-get-keys', and
`icomplete-completions'. Doesn't work with mainline GNU
Emacs 19.34 (because the cmdloop doesn't set owindow, and the
current-local-map doesn't take optional buffer arg), so feature
is, by default, inhibited unless we're running in XEmacs.
(icomplete-get-keys): Return keys bound to func name in buffer
"owindow" - since "owindow" is calling-buffer history present
only in XEmacs, this function is only useful in XEmacs.
(icomplete-max-delay-chars, icomplete-compute-delay): New vars.
(icomplete-delay-completions-threshold): New var.
These customize the delay behavior, so that completions don't
intrude as quickly for short input.
1997-05-29 18:18:23 +00:00
|
|
|
|
|
2012-11-29 21:32:24 +00:00
|
|
|
|
(defvar icomplete-minibuffer-map
|
|
|
|
|
(let ((map (make-sparse-keymap)))
|
|
|
|
|
(define-key map [?\M-\t] 'minibuffer-force-complete)
|
|
|
|
|
(define-key map [?\C-j] 'minibuffer-force-complete-and-exit)
|
2013-02-15 19:19:29 +00:00
|
|
|
|
(define-key map [?\C-.] 'icomplete-forward-completions)
|
|
|
|
|
(define-key map [?\C-,] 'icomplete-backward-completions)
|
2012-11-29 21:32:24 +00:00
|
|
|
|
map))
|
|
|
|
|
|
|
|
|
|
(defun icomplete-forward-completions ()
|
|
|
|
|
"Step forward completions by one entry.
|
|
|
|
|
Second entry becomes the first and can be selected with
|
|
|
|
|
`minibuffer-force-complete-and-exit'."
|
|
|
|
|
(interactive)
|
2013-09-06 22:46:44 +00:00
|
|
|
|
(let* ((beg (minibuffer-prompt-end))
|
|
|
|
|
(end (point-max))
|
|
|
|
|
(comps (completion-all-sorted-completions beg end))
|
2012-11-29 21:32:24 +00:00
|
|
|
|
(last (last comps)))
|
2013-02-08 07:53:55 +00:00
|
|
|
|
(when comps
|
|
|
|
|
(setcdr last (cons (car comps) (cdr last)))
|
2013-09-06 22:46:44 +00:00
|
|
|
|
(completion--cache-all-sorted-completions beg end (cdr comps)))))
|
2012-11-29 21:32:24 +00:00
|
|
|
|
|
|
|
|
|
(defun icomplete-backward-completions ()
|
|
|
|
|
"Step backward completions by one entry.
|
|
|
|
|
Last entry becomes the first and can be selected with
|
|
|
|
|
`minibuffer-force-complete-and-exit'."
|
|
|
|
|
(interactive)
|
2013-09-06 22:46:44 +00:00
|
|
|
|
(let* ((beg (minibuffer-prompt-end))
|
|
|
|
|
(end (point-max))
|
|
|
|
|
(comps (completion-all-sorted-completions beg end))
|
2012-11-29 21:32:24 +00:00
|
|
|
|
(last-but-one (last comps 2))
|
|
|
|
|
(last (cdr last-but-one)))
|
2013-02-08 07:53:55 +00:00
|
|
|
|
(when (consp last) ; At least two elements in comps
|
2012-11-29 21:32:24 +00:00
|
|
|
|
(setcdr last-but-one (cdr last))
|
|
|
|
|
(push (car last) comps)
|
2013-09-06 22:46:44 +00:00
|
|
|
|
(completion--cache-all-sorted-completions beg end comps))))
|
2012-11-29 21:32:24 +00:00
|
|
|
|
|
1994-09-18 08:27:12 +00:00
|
|
|
|
;;;_ > icomplete-mode (&optional prefix)
|
1993-12-30 11:56:19 +00:00
|
|
|
|
;;;###autoload
|
2005-03-21 19:19:26 +00:00
|
|
|
|
(define-minor-mode icomplete-mode
|
Fix minor mode docstrings for the new meaning of a nil ARG.
* abbrev.el (abbrev-mode):
* allout.el (allout-mode):
* autoinsert.el (auto-insert-mode):
* autoarg.el (autoarg-mode, autoarg-kp-mode):
* autorevert.el (auto-revert-mode, auto-revert-tail-mode)
(global-auto-revert-mode):
* battery.el (display-battery-mode):
* composite.el (global-auto-composition-mode)
(auto-composition-mode):
* delsel.el (delete-selection-mode):
* desktop.el (desktop-save-mode):
* dired-x.el (dired-omit-mode):
* dirtrack.el (dirtrack-mode):
* doc-view.el (doc-view-minor-mode):
* double.el (double-mode):
* electric.el (electric-indent-mode, electric-pair-mode):
* emacs-lock.el (emacs-lock-mode):
* epa-hook.el (auto-encryption-mode):
* follow.el (follow-mode):
* font-core.el (font-lock-mode):
* frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
* help.el (temp-buffer-resize-mode):
* hilit-chg.el (highlight-changes-mode)
(highlight-changes-visible-mode):
* hi-lock.el (hi-lock-mode):
* hl-line.el (hl-line-mode, global-hl-line-mode):
* icomplete.el (icomplete-mode):
* ido.el (ido-everywhere):
* image-file.el (auto-image-file-mode):
* image-mode.el (image-minor-mode):
* iswitchb.el (iswitchb-mode):
* jka-cmpr-hook.el (auto-compression-mode):
* linum.el (linum-mode):
* longlines.el (longlines-mode):
* master.el (master-mode):
* mb-depth.el (minibuffer-depth-indicate-mode):
* menu-bar.el (menu-bar-mode):
* minibuf-eldef.el (minibuffer-electric-default-mode):
* mouse-sel.el (mouse-sel-mode):
* msb.el (msb-mode):
* mwheel.el (mouse-wheel-mode):
* outline.el (outline-minor-mode):
* paren.el (show-paren-mode):
* recentf.el (recentf-mode):
* reveal.el (reveal-mode, global-reveal-mode):
* rfn-eshadow.el (file-name-shadow-mode):
* ruler-mode.el (ruler-mode):
* savehist.el (savehist-mode):
* scroll-all.el (scroll-all-mode):
* scroll-bar.el (scroll-bar-mode):
* server.el (server-mode):
* shell.el (shell-dirtrack-mode):
* simple.el (auto-fill-mode, transient-mark-mode)
(visual-line-mode, overwrite-mode, binary-overwrite-mode)
(line-number-mode, column-number-mode, size-indication-mode)
(auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
* strokes.el (strokes-mode):
* time.el (display-time-mode):
* t-mouse.el (gpm-mouse-mode):
* tool-bar.el (tool-bar-mode):
* tooltip.el (tooltip-mode):
* type-break.el (type-break-mode-line-message-mode)
(type-break-query-mode):
* view.el (view-mode):
* whitespace.el (whitespace-mode, whitespace-newline-mode)
(global-whitespace-mode, global-whitespace-newline-mode):
* xt-mouse.el (xterm-mouse-mode): Doc fix.
* emacs-lisp/easy-mmode.el (define-globalized-minor-mode): Fix
autogenerated docstring.
2011-10-19 12:54:24 +00:00
|
|
|
|
"Toggle incremental minibuffer completion (Icomplete mode).
|
|
|
|
|
With a prefix argument ARG, enable Icomplete mode if ARG is
|
|
|
|
|
positive, and disable it otherwise. If called from Lisp, enable
|
|
|
|
|
the mode if ARG is omitted or nil."
|
2005-03-21 19:19:26 +00:00
|
|
|
|
:global t :group 'icomplete
|
|
|
|
|
(if icomplete-mode
|
2001-04-03 14:48:02 +00:00
|
|
|
|
;; The following is not really necessary after first time -
|
|
|
|
|
;; no great loss.
|
2011-09-18 16:13:01 +00:00
|
|
|
|
(add-hook 'minibuffer-setup-hook 'icomplete-minibuffer-setup)
|
|
|
|
|
(remove-hook 'minibuffer-setup-hook 'icomplete-minibuffer-setup)))
|
1994-09-18 08:27:12 +00:00
|
|
|
|
|
|
|
|
|
;;;_ > icomplete-simple-completing-p ()
|
|
|
|
|
(defun icomplete-simple-completing-p ()
|
|
|
|
|
"Non-nil if current window is minibuffer that's doing simple completion.
|
|
|
|
|
|
|
|
|
|
Conditions are:
|
|
|
|
|
the selected window is a minibuffer,
|
|
|
|
|
and not in the middle of macro execution,
|
2005-03-21 19:19:26 +00:00
|
|
|
|
and `minibuffer-completion-table' is not a symbol (which would
|
1996-01-04 23:41:53 +00:00
|
|
|
|
indicate some non-standard, non-simple completion mechanism,
|
1994-09-18 08:27:12 +00:00
|
|
|
|
like file-name and other custom-func completions)."
|
|
|
|
|
|
Do not call to `selected-window' where it is assumed by default.
Affected functions are `window-minibuffer-p', `window-dedicated-p',
`window-hscroll', `window-width', `window-height', `window-buffer',
`window-frame', `window-start', `window-point', `next-window'
and `window-display-table'.
* abbrev.el (abbrev--default-expand):
* bs.el (bs--show-with-configuration):
* buff-menu.el (Buffer-menu-mouse-select):
* calc/calc.el (calc):
* calendar/calendar.el (calendar-generate-window):
* calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
(diary-make-entry):
* comint.el (send-invisible, comint-dynamic-complete-filename)
(comint-dynamic-simple-complete, comint-dynamic-list-completions):
* completion.el (complete):
* dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
* disp-table.el (describe-current-display-table):
* doc-view.el (doc-view-insert-image):
* ebuff-menu.el (Electric-buffer-menu-mouse-select):
* ehelp.el (with-electric-help):
* emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
* emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
* emacs-lisp/helper.el (Helper-help-scroller):
* emulation/cua-base.el (cua--post-command-handler-1):
* eshell/esh-mode.el (eshell-output-filter):
* ffap.el (ffap-gnus-wrapper):
* help-macro.el (make-help-screen):
* hilit-chg.el (highlight-compare-buffers):
* hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
* hl-line.el (global-hl-line-highlight):
* icomplete.el (icomplete-simple-completing-p):
* isearch.el (isearch-done):
* jit-lock.el (jit-lock-stealth-fontify):
* mail/rmailsum.el (rmail-summary-scroll-msg-up):
* lisp/mouse-drag.el (mouse-drag-should-do-col-scrolling):
* mpc.el (mpc-tagbrowser, mpc):
* net/rcirc.el (rcirc-any-buffer):
* play/gomoku.el (gomoku-max-width, gomoku-max-height):
* play/landmark.el (landmark-max-width, landmark-max-height):
* play/zone.el (zone):
* progmodes/compile.el (compilation-goto-locus):
* progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
* progmodes/etags.el (find-tag-other-window):
* progmodes/fortran.el (fortran-column-ruler):
* progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
* progmodes/verilog-mode.el (verilog-point-text):
* reposition.el (reposition-window):
* rot13.el (toggle-rot13-mode):
* server.el (server-switch-buffer):
* shell.el (shell-dynamic-complete-command)
(shell-dynamic-complete-environment-variable):
* simple.el (insert-buffer, set-selective-display)
(delete-completion-window):
* speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
(speedbar-recenter):
* startup.el (fancy-splash-head):
* textmodes/ispell.el (ispell-command-loop):
* textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
* tutorial.el (help-with-tutorial):
* vc/add-log.el (add-change-log-entry):
* vc/compare-w.el (compare-windows):
* vc/ediff-help.el (ediff-indent-help-message):
* vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
* vc/ediff-wind.el (ediff-skip-unsuitable-frames)
(ediff-setup-control-frame):
* vc/emerge.el (emerge-position-region):
* vc/pcvs-util.el (cvs-bury-buffer):
* window.el (walk-windows, mouse-autoselect-window-select):
* winner.el (winner-set-conf, winner-undo): Related users changed.
2013-08-05 14:26:57 +00:00
|
|
|
|
(and (window-minibuffer-p)
|
1996-05-29 17:17:34 +00:00
|
|
|
|
(not executing-kbd-macro)
|
2005-03-23 13:43:13 +00:00
|
|
|
|
minibuffer-completion-table
|
2006-09-23 18:39:22 +00:00
|
|
|
|
(or (not (functionp minibuffer-completion-table))
|
2008-05-20 03:36:20 +00:00
|
|
|
|
(eq icomplete-with-completion-tables t)
|
2006-09-23 18:39:22 +00:00
|
|
|
|
(member minibuffer-completion-table
|
2006-09-24 13:48:59 +00:00
|
|
|
|
icomplete-with-completion-tables))))
|
1995-08-22 20:30:57 +00:00
|
|
|
|
|
1994-09-18 08:27:12 +00:00
|
|
|
|
;;;_ > icomplete-minibuffer-setup ()
|
|
|
|
|
(defun icomplete-minibuffer-setup ()
|
|
|
|
|
"Run in minibuffer on activation to establish incremental completion.
|
1995-08-22 20:30:57 +00:00
|
|
|
|
Usually run by inclusion in `minibuffer-setup-hook'."
|
2005-03-21 19:19:26 +00:00
|
|
|
|
(when (and icomplete-mode (icomplete-simple-completing-p))
|
2011-09-18 16:13:01 +00:00
|
|
|
|
(set (make-local-variable 'completion-show-inline-help) nil)
|
2012-11-29 21:32:24 +00:00
|
|
|
|
(use-local-map (make-composed-keymap icomplete-minibuffer-map
|
|
|
|
|
(current-local-map)))
|
2005-03-21 19:19:26 +00:00
|
|
|
|
(add-hook 'pre-command-hook
|
2012-06-22 17:37:28 +00:00
|
|
|
|
(lambda () (let ((non-essential t))
|
|
|
|
|
(run-hooks 'icomplete-pre-command-hook)))
|
2005-03-21 19:19:26 +00:00
|
|
|
|
nil t)
|
|
|
|
|
(add-hook 'post-command-hook
|
2012-06-22 17:37:28 +00:00
|
|
|
|
(lambda () (let ((non-essential t)) ;E.g. don't prompt for password!
|
|
|
|
|
(run-hooks 'icomplete-post-command-hook)))
|
2005-03-21 19:19:26 +00:00
|
|
|
|
nil t)
|
|
|
|
|
(run-hooks 'icomplete-minibuffer-setup-hook)))
|
1999-11-21 13:44:26 +00:00
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
1994-09-18 08:27:12 +00:00
|
|
|
|
;;;_* Completion
|
|
|
|
|
|
|
|
|
|
;;;_ > icomplete-tidy ()
|
|
|
|
|
(defun icomplete-tidy ()
|
|
|
|
|
"Remove completions display \(if any) prior to new user input.
|
1995-08-22 20:30:57 +00:00
|
|
|
|
Should be run in on the minibuffer `pre-command-hook'. See `icomplete-mode'
|
1994-09-18 08:27:12 +00:00
|
|
|
|
and `minibuffer-setup-hook'."
|
2008-05-22 03:15:32 +00:00
|
|
|
|
(delete-overlay icomplete-overlay))
|
1995-08-22 20:30:57 +00:00
|
|
|
|
|
1994-09-18 08:27:12 +00:00
|
|
|
|
;;;_ > icomplete-exhibit ()
|
1993-11-24 00:36:31 +00:00
|
|
|
|
(defun icomplete-exhibit ()
|
1994-09-18 08:27:12 +00:00
|
|
|
|
"Insert icomplete completions display.
|
1995-08-22 20:30:57 +00:00
|
|
|
|
Should be run via minibuffer `post-command-hook'. See `icomplete-mode'
|
1994-09-18 08:27:12 +00:00
|
|
|
|
and `minibuffer-setup-hook'."
|
2013-09-06 22:46:44 +00:00
|
|
|
|
(when (and icomplete-mode
|
|
|
|
|
(icomplete-simple-completing-p)) ;Shouldn't be necessary.
|
2005-03-21 19:19:26 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-max))
|
1993-11-24 00:36:31 +00:00
|
|
|
|
; Insert the match-status information:
|
2005-03-21 19:19:26 +00:00
|
|
|
|
(if (and (> (point-max) (minibuffer-prompt-end))
|
2012-11-29 21:32:24 +00:00
|
|
|
|
buffer-undo-list ; Wait for some user input.
|
|
|
|
|
(or
|
|
|
|
|
;; Don't bother with delay after certain number of chars:
|
|
|
|
|
(> (- (point) (field-beginning)) icomplete-max-delay-chars)
|
|
|
|
|
;; Don't delay if the completions are known.
|
|
|
|
|
completion-all-sorted-completions
|
|
|
|
|
;; Don't delay if alternatives number is small enough:
|
|
|
|
|
(and (sequencep minibuffer-completion-table)
|
|
|
|
|
(< (length minibuffer-completion-table)
|
|
|
|
|
icomplete-delay-completions-threshold))
|
|
|
|
|
;; Delay - give some grace time for next keystroke, before
|
2005-03-21 19:19:26 +00:00
|
|
|
|
;; embarking on computing completions:
|
|
|
|
|
(sit-for icomplete-compute-delay)))
|
|
|
|
|
(let ((text (while-no-input
|
2012-11-29 21:32:24 +00:00
|
|
|
|
(icomplete-completions
|
|
|
|
|
(field-string)
|
|
|
|
|
minibuffer-completion-table
|
|
|
|
|
minibuffer-completion-predicate
|
2008-05-22 03:15:32 +00:00
|
|
|
|
(not minibuffer-completion-confirm))))
|
2007-03-10 19:23:29 +00:00
|
|
|
|
(buffer-undo-list t)
|
|
|
|
|
deactivate-mark)
|
2005-08-09 02:51:55 +00:00
|
|
|
|
;; Do nothing if while-no-input was aborted.
|
2012-11-29 21:32:24 +00:00
|
|
|
|
(when (stringp text)
|
2008-05-22 03:15:32 +00:00
|
|
|
|
(move-overlay icomplete-overlay (point) (point) (current-buffer))
|
|
|
|
|
;; The current C cursor code doesn't know to use the overlay's
|
|
|
|
|
;; marker's stickiness to figure out whether to place the cursor
|
|
|
|
|
;; before or after the string, so let's spoon-feed it the pos.
|
|
|
|
|
(put-text-property 0 1 'cursor t text)
|
|
|
|
|
(overlay-put icomplete-overlay 'after-string text)))))))
|
1995-08-22 20:30:57 +00:00
|
|
|
|
|
1994-09-18 08:27:12 +00:00
|
|
|
|
;;;_ > icomplete-completions (name candidates predicate require-match)
|
|
|
|
|
(defun icomplete-completions (name candidates predicate require-match)
|
1993-11-24 00:36:31 +00:00
|
|
|
|
"Identify prospective candidates for minibuffer completion.
|
|
|
|
|
|
1993-12-30 11:56:19 +00:00
|
|
|
|
The display is updated with each minibuffer keystroke during
|
1993-11-24 00:36:31 +00:00
|
|
|
|
minibuffer completion.
|
|
|
|
|
|
|
|
|
|
Prospective completion suffixes (if any) are displayed, bracketed by
|
|
|
|
|
one of \(), \[], or \{} pairs. The choice of brackets is as follows:
|
|
|
|
|
|
|
|
|
|
\(...) - a single prospect is identified and matching is enforced,
|
|
|
|
|
\[...] - a single prospect is identified but matching is optional, or
|
|
|
|
|
\{...} - multiple prospects, separated by commas, are indicated, and
|
1996-01-04 23:41:53 +00:00
|
|
|
|
further input is required to distinguish a single one.
|
1993-11-24 00:36:31 +00:00
|
|
|
|
|
1996-01-04 23:41:53 +00:00
|
|
|
|
The displays for unambiguous matches have ` [Matched]' appended
|
1995-08-22 20:30:57 +00:00
|
|
|
|
\(whether complete or not), or ` \[No matches]', if no eligible
|
1997-06-15 02:37:58 +00:00
|
|
|
|
matches exist. \(Keybindings for uniquely matched commands
|
Integrated Emacs 19.34 and XEmacs 19.15
corrections (typos, style, command revisions, etc).
Integrated hacked up XEmacs immediate keybindings display. See
`icomplete-show-key-bindings', `icomplete-get-keys', and
`icomplete-completions'. Doesn't work with mainline GNU
Emacs 19.34 (because the cmdloop doesn't set owindow, and the
current-local-map doesn't take optional buffer arg), so feature
is, by default, inhibited unless we're running in XEmacs.
(icomplete-get-keys): Return keys bound to func name in buffer
"owindow" - since "owindow" is calling-buffer history present
only in XEmacs, this function is only useful in XEmacs.
(icomplete-max-delay-chars, icomplete-compute-delay): New vars.
(icomplete-delay-completions-threshold): New var.
These customize the delay behavior, so that completions don't
intrude as quickly for short input.
1997-05-29 18:18:23 +00:00
|
|
|
|
are exhibited within the square braces.)"
|
|
|
|
|
|
2012-06-22 17:37:28 +00:00
|
|
|
|
(let* ((md (completion--field-metadata (field-beginning)))
|
2013-09-06 22:46:44 +00:00
|
|
|
|
(comps (completion-all-sorted-completions
|
|
|
|
|
(minibuffer-prompt-end) (point-max)))
|
2008-05-22 03:15:32 +00:00
|
|
|
|
(last (if (consp comps) (last comps)))
|
|
|
|
|
(base-size (cdr last))
|
2008-05-20 03:36:20 +00:00
|
|
|
|
(open-bracket (if require-match "(" "["))
|
|
|
|
|
(close-bracket (if require-match ")" "]")))
|
2008-05-29 16:25:12 +00:00
|
|
|
|
;; `concat'/`mapconcat' is the slow part.
|
2008-05-22 03:15:32 +00:00
|
|
|
|
(if (not (consp comps))
|
2008-05-20 03:36:20 +00:00
|
|
|
|
(format " %sNo matches%s" open-bracket close-bracket)
|
2008-05-22 03:15:32 +00:00
|
|
|
|
(if last (setcdr last nil))
|
2008-05-20 13:44:50 +00:00
|
|
|
|
(let* ((most-try
|
|
|
|
|
(if (and base-size (> base-size 0))
|
|
|
|
|
(completion-try-completion
|
2011-05-31 03:03:38 +00:00
|
|
|
|
name candidates predicate (length name) md)
|
2008-05-20 13:44:50 +00:00
|
|
|
|
;; If the `comps' are 0-based, the result should be
|
|
|
|
|
;; the same with `comps'.
|
|
|
|
|
(completion-try-completion
|
2011-05-31 03:03:38 +00:00
|
|
|
|
name comps nil (length name) md)))
|
2008-05-22 03:15:32 +00:00
|
|
|
|
(most (if (consp most-try) (car most-try)
|
|
|
|
|
(if most-try (car comps) "")))
|
2008-05-20 03:36:20 +00:00
|
|
|
|
;; Compare name and most, so we can determine if name is
|
|
|
|
|
;; a prefix of most, or something else.
|
|
|
|
|
(compare (compare-strings name nil nil
|
|
|
|
|
most nil nil completion-ignore-case))
|
|
|
|
|
(determ (unless (or (eq t compare) (eq t most-try)
|
|
|
|
|
(= (setq compare (1- (abs compare)))
|
|
|
|
|
(length most)))
|
|
|
|
|
(concat open-bracket
|
|
|
|
|
(cond
|
|
|
|
|
((= compare (length name))
|
|
|
|
|
;; Typical case: name is a prefix.
|
|
|
|
|
(substring most compare))
|
2012-12-17 19:43:55 +00:00
|
|
|
|
;; Don't bother truncating if it doesn't gain
|
|
|
|
|
;; us at least 2 columns.
|
|
|
|
|
((< compare 3) most)
|
|
|
|
|
(t (concat "…" (substring most compare))))
|
2008-05-20 03:36:20 +00:00
|
|
|
|
close-bracket)))
|
2005-03-21 19:19:26 +00:00
|
|
|
|
;;"-prospects" - more than one candidate
|
2013-02-13 15:13:22 +00:00
|
|
|
|
(prospects-len (+ (string-width
|
|
|
|
|
(or determ (concat open-bracket close-bracket)))
|
2013-01-04 08:20:49 +00:00
|
|
|
|
(string-width icomplete-separator)
|
|
|
|
|
3 ;; take {…} into account
|
|
|
|
|
(string-width (buffer-string))))
|
2008-05-29 16:25:12 +00:00
|
|
|
|
(prospects-max
|
|
|
|
|
;; Max total length to use, including the minibuffer content.
|
2008-05-29 17:40:20 +00:00
|
|
|
|
(* (+ icomplete-prospects-height
|
2008-05-29 16:25:12 +00:00
|
|
|
|
;; If the minibuffer content already uses up more than
|
|
|
|
|
;; one line, increase the allowable space accordingly.
|
|
|
|
|
(/ prospects-len (window-width)))
|
|
|
|
|
(window-width)))
|
2013-02-13 15:13:22 +00:00
|
|
|
|
(prefix (when icomplete-hide-common-prefix
|
|
|
|
|
(try-completion "" comps)))
|
2008-05-20 03:36:20 +00:00
|
|
|
|
(prefix-len
|
|
|
|
|
;; Find the common prefix among `comps'.
|
2012-02-23 15:36:07 +00:00
|
|
|
|
;; We can't use the optimization below because its assumptions
|
|
|
|
|
;; aren't always true, e.g. when completion-cycling (bug#10850):
|
|
|
|
|
;; (if (eq t (compare-strings (car comps) nil (length most)
|
|
|
|
|
;; most nil nil completion-ignore-case))
|
|
|
|
|
;; ;; Common case.
|
|
|
|
|
;; (length most)
|
|
|
|
|
;; Else, use try-completion.
|
2013-02-13 15:13:22 +00:00
|
|
|
|
(and (stringp prefix) (length prefix))) ;;)
|
|
|
|
|
prospects comp limit)
|
2008-05-22 03:15:32 +00:00
|
|
|
|
(if (eq most-try t) ;; (or (null (cdr comps))
|
1999-11-21 13:44:26 +00:00
|
|
|
|
(setq prospects nil)
|
2013-02-13 15:13:22 +00:00
|
|
|
|
(when (member name comps)
|
|
|
|
|
;; NAME is complete but not unique. This scenario poses
|
|
|
|
|
;; following UI issues:
|
|
|
|
|
;;
|
|
|
|
|
;; - When `icomplete-hide-common-prefix' is non-nil, NAME
|
|
|
|
|
;; is stripped empty. This would make the entry
|
|
|
|
|
;; inconspicuous.
|
|
|
|
|
;;
|
|
|
|
|
;; - Due to sorting of completions, NAME may not be the
|
|
|
|
|
;; first of the prospects and could be hidden deep in
|
|
|
|
|
;; the displayed string.
|
|
|
|
|
;;
|
|
|
|
|
;; - Because of `icomplete-prospects-height' , NAME may
|
|
|
|
|
;; not even be displayed to the user.
|
|
|
|
|
;;
|
|
|
|
|
;; To circumvent all the above problems, provide a visual
|
|
|
|
|
;; cue to the user via an "empty string" in the try
|
|
|
|
|
;; completion field.
|
|
|
|
|
(setq determ (concat open-bracket "" close-bracket)))
|
|
|
|
|
;; Compute prospects for display.
|
2008-03-20 10:28:55 +00:00
|
|
|
|
(while (and comps (not limit))
|
2008-05-20 03:36:20 +00:00
|
|
|
|
(setq comp
|
2012-02-23 15:36:07 +00:00
|
|
|
|
(if prefix-len (substring (car comps) prefix-len) (car comps))
|
1999-11-21 13:44:26 +00:00
|
|
|
|
comps (cdr comps))
|
2013-02-13 15:13:22 +00:00
|
|
|
|
(setq prospects-len
|
2013-01-04 08:20:49 +00:00
|
|
|
|
(+ (string-width comp)
|
|
|
|
|
(string-width icomplete-separator)
|
|
|
|
|
prospects-len))
|
2008-05-29 16:25:12 +00:00
|
|
|
|
(if (< prospects-len prospects-max)
|
2008-05-22 03:15:32 +00:00
|
|
|
|
(push comp prospects)
|
2013-02-13 15:13:22 +00:00
|
|
|
|
(setq limit t))))
|
|
|
|
|
(setq prospects (nreverse prospects))
|
|
|
|
|
;; Decorate first of the prospects.
|
|
|
|
|
(when prospects
|
|
|
|
|
(let ((first (copy-sequence (pop prospects))))
|
|
|
|
|
(put-text-property 0 (length first)
|
|
|
|
|
'face 'icomplete-first-match first)
|
|
|
|
|
(push first prospects)))
|
2008-05-22 03:15:32 +00:00
|
|
|
|
;; Restore the base-size info, since completion-all-sorted-completions
|
|
|
|
|
;; is cached.
|
|
|
|
|
(if last (setcdr last base-size))
|
1999-11-21 13:44:26 +00:00
|
|
|
|
(if prospects
|
|
|
|
|
(concat determ
|
2005-03-21 19:19:26 +00:00
|
|
|
|
"{"
|
2013-02-13 15:13:22 +00:00
|
|
|
|
(mapconcat 'identity prospects icomplete-separator)
|
2012-11-29 21:32:24 +00:00
|
|
|
|
(and limit (concat icomplete-separator "…"))
|
2005-03-21 19:19:26 +00:00
|
|
|
|
"}")
|
2012-11-29 21:32:24 +00:00
|
|
|
|
(concat determ " [Matched]"))))))
|
1993-11-24 00:36:31 +00:00
|
|
|
|
|
2008-05-20 03:36:20 +00:00
|
|
|
|
;;_* Local emacs vars.
|
|
|
|
|
;;Local variables:
|
|
|
|
|
;;allout-layout: (-2 :)
|
|
|
|
|
;;End:
|
1993-11-24 00:36:31 +00:00
|
|
|
|
|
|
|
|
|
;;; icomplete.el ends here
|