2000-05-24 15:12:19 +00:00
|
|
|
|
;;; icomplete.el --- minibuffer completion incremental feedback
|
1994-09-18 08:27:12 +00:00
|
|
|
|
|
2015-01-01 22:26:41 +00:00
|
|
|
|
;; Copyright (C) 1992-1994, 1997, 1999, 2001-2015 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
|
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
|
|
|
|
|
2014-02-12 08:27:27 +00:00
|
|
|
|
;; Enabling this package implements a more fine-grained minibuffer
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; 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.
|
|
|
|
|
|
2014-02-12 08:27:27 +00:00
|
|
|
|
;; To enable/disable icomplete mode, use the `icomplete-mode' 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
|
|
|
|
|
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:
|
|
|
|
|
|
1998-01-24 11:35:59 +00:00
|
|
|
|
(defgroup icomplete nil
|
|
|
|
|
"Show completions dynamically in minibuffer."
|
|
|
|
|
:prefix "icomplete-"
|
2014-02-12 08:27:27 +00:00
|
|
|
|
:link '(info-link "(emacs)Icomplete")
|
1998-01-24 11:35:59 +00:00
|
|
|
|
: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 " | "
|
lisp/icomplete.el, lisp/ido.el: Doc fixes.
lisp/icomplete.el: Miscellaneous doc fixes.
Use Icomplete everywhere instead of icomplete for consistency.
(icomplete-max-delay-chars): Fix typo.
(icomplete-mode): Use \[].
(icomplete-tidy, icomplete-exhibit): Reflow.
(icomplete-minibuffer-setup-hook, icomplete-completions):
Remove superfluous backlashes.
lisp/ido.el: Miscellaneous doc fixes.
Use Ido everywhere instead of ido or `ido' for consistency.
(ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
(ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
(ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
(ido-separator): Extract obsolescence info from docstring and declare
with make-obsolete-variable.
(ido-minibuffer-setup-hook): Simplify example.
(ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
(ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
(ido-completion-help, ido-completing-read): Fix typos in docstrings.
(ido-everywhere): Reflow docstring.
(ido-toggle-vc): Doc fix.
(ido-switch-buffer, ido-find-file): Use tabs to improve legibility
of long list of keybindings.
2014-03-03 02:27:08 +00:00
|
|
|
|
"String used by Icomplete to separate alternatives in the minibuffer."
|
2012-11-29 21:32:24 +00:00
|
|
|
|
: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
|
2013-12-24 03:48:55 +00:00
|
|
|
|
:version "24.4")
|
|
|
|
|
|
2013-12-27 12:55:26 +00:00
|
|
|
|
(defcustom icomplete-show-matches-on-no-input nil
|
2013-12-24 03:48:55 +00:00
|
|
|
|
"When non-nil, show completions when first prompting for input."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:version "24.4")
|
2013-02-13 15:13:22 +00:00
|
|
|
|
|
2014-02-12 08:27:27 +00:00
|
|
|
|
(defcustom icomplete-with-completion-tables t
|
lisp/icomplete.el, lisp/ido.el: Doc fixes.
lisp/icomplete.el: Miscellaneous doc fixes.
Use Icomplete everywhere instead of icomplete for consistency.
(icomplete-max-delay-chars): Fix typo.
(icomplete-mode): Use \[].
(icomplete-tidy, icomplete-exhibit): Reflow.
(icomplete-minibuffer-setup-hook, icomplete-completions):
Remove superfluous backlashes.
lisp/ido.el: Miscellaneous doc fixes.
Use Ido everywhere instead of ido or `ido' for consistency.
(ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
(ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
(ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
(ido-separator): Extract obsolescence info from docstring and declare
with make-obsolete-variable.
(ido-minibuffer-setup-hook): Simplify example.
(ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
(ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
(ido-completion-help, ido-completing-read): Fix typos in docstrings.
(ido-everywhere): Reflow docstring.
(ido-toggle-vc): Doc fix.
(ido-switch-buffer, ido-find-file): Use tabs to improve legibility
of long list of keybindings.
2014-03-03 02:27:08 +00:00
|
|
|
|
"Specialized completion tables with which Icomplete should operate.
|
2014-02-12 08:27:27 +00:00
|
|
|
|
If this is t, Icomplete operates on all tables.
|
|
|
|
|
Otherwise this should be a list of the completion tables (e.g.,
|
|
|
|
|
`internal-complete-buffer') on which Icomplete should operate."
|
|
|
|
|
;; Prior to 24.4, not a user-option, default '(internal-complete-buffer).
|
|
|
|
|
:version "24.4"
|
|
|
|
|
:type '(choice (const :tag "All" t)
|
|
|
|
|
(repeat function)))
|
|
|
|
|
|
|
|
|
|
(defface icomplete-first-match '((t :weight bold))
|
lisp/icomplete.el, lisp/ido.el: Doc fixes.
lisp/icomplete.el: Miscellaneous doc fixes.
Use Icomplete everywhere instead of icomplete for consistency.
(icomplete-max-delay-chars): Fix typo.
(icomplete-mode): Use \[].
(icomplete-tidy, icomplete-exhibit): Reflow.
(icomplete-minibuffer-setup-hook, icomplete-completions):
Remove superfluous backlashes.
lisp/ido.el: Miscellaneous doc fixes.
Use Ido everywhere instead of ido or `ido' for consistency.
(ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
(ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
(ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
(ido-separator): Extract obsolescence info from docstring and declare
with make-obsolete-variable.
(ido-minibuffer-setup-hook): Simplify example.
(ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
(ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
(ido-completion-help, ido-completing-read): Fix typos in docstrings.
(ido-everywhere): Reflow docstring.
(ido-toggle-vc): Doc fix.
(ido-switch-buffer, ido-find-file): Use tabs to improve legibility
of long list of keybindings.
2014-03-03 02:27:08 +00:00
|
|
|
|
"Face used by Icomplete for highlighting first match."
|
2013-12-24 03:48:55 +00:00
|
|
|
|
:version "24.4")
|
2013-02-13 15:13:22 +00:00
|
|
|
|
|
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
|
|
|
|
: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'."
|
2013-12-24 03:48:55 +00:00
|
|
|
|
:type 'number)
|
1998-01-24 11:35:59 +00:00
|
|
|
|
|
|
|
|
|
(defcustom icomplete-delay-completions-threshold 400
|
2008-03-20 09:17:22 +00:00
|
|
|
|
"Pending-completions number over which to apply `icomplete-compute-delay'."
|
2013-12-24 03:48:55 +00:00
|
|
|
|
:type 'integer)
|
1998-01-24 11:35:59 +00:00
|
|
|
|
|
|
|
|
|
(defcustom icomplete-max-delay-chars 3
|
lisp/icomplete.el, lisp/ido.el: Doc fixes.
lisp/icomplete.el: Miscellaneous doc fixes.
Use Icomplete everywhere instead of icomplete for consistency.
(icomplete-max-delay-chars): Fix typo.
(icomplete-mode): Use \[].
(icomplete-tidy, icomplete-exhibit): Reflow.
(icomplete-minibuffer-setup-hook, icomplete-completions):
Remove superfluous backlashes.
lisp/ido.el: Miscellaneous doc fixes.
Use Ido everywhere instead of ido or `ido' for consistency.
(ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
(ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
(ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
(ido-separator): Extract obsolescence info from docstring and declare
with make-obsolete-variable.
(ido-minibuffer-setup-hook): Simplify example.
(ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
(ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
(ido-completion-help, ido-completing-read): Fix typos in docstrings.
(ido-everywhere): Reflow docstring.
(ido-toggle-vc): Doc fix.
(ido-switch-buffer, ido-find-file): Use tabs to improve legibility
of long list of keybindings.
2014-03-03 02:27:08 +00:00
|
|
|
|
"Maximum number of initial chars to apply `icomplete-compute-delay'."
|
2013-12-24 03:48:55 +00:00
|
|
|
|
:type 'integer)
|
1998-01-24 11:35:59 +00:00
|
|
|
|
|
2013-09-16 19:09:24 +00:00
|
|
|
|
(defvar icomplete-in-buffer nil
|
|
|
|
|
"If non-nil, also use Icomplete when completing in non-mini buffers.")
|
|
|
|
|
|
1998-01-24 11:35:59 +00:00
|
|
|
|
(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
|
|
|
|
|
lisp/icomplete.el, lisp/ido.el: Doc fixes.
lisp/icomplete.el: Miscellaneous doc fixes.
Use Icomplete everywhere instead of icomplete for consistency.
(icomplete-max-delay-chars): Fix typo.
(icomplete-mode): Use \[].
(icomplete-tidy, icomplete-exhibit): Reflow.
(icomplete-minibuffer-setup-hook, icomplete-completions):
Remove superfluous backlashes.
lisp/ido.el: Miscellaneous doc fixes.
Use Ido everywhere instead of ido or `ido' for consistency.
(ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
(ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
(ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
(ido-separator): Extract obsolescence info from docstring and declare
with make-obsolete-variable.
(ido-minibuffer-setup-hook): Simplify example.
(ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
(ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
(ido-completion-help, ido-completing-read): Fix typos in docstrings.
(ido-everywhere): Reflow docstring.
(ido-toggle-vc): Doc fix.
(ido-switch-buffer, ido-find-file): Use tabs to improve legibility
of long list of keybindings.
2014-03-03 02:27:08 +00:00
|
|
|
|
This hook is run during minibuffer setup if Icomplete is active.
|
|
|
|
|
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
|
|
|
|
|
lisp/icomplete.el, lisp/ido.el: Doc fixes.
lisp/icomplete.el: Miscellaneous doc fixes.
Use Icomplete everywhere instead of icomplete for consistency.
(icomplete-max-delay-chars): Fix typo.
(icomplete-mode): Use \[].
(icomplete-tidy, icomplete-exhibit): Reflow.
(icomplete-minibuffer-setup-hook, icomplete-completions):
Remove superfluous backlashes.
lisp/ido.el: Miscellaneous doc fixes.
Use Ido everywhere instead of ido or `ido' for consistency.
(ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
(ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
(ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
(ido-separator): Extract obsolescence info from docstring and declare
with make-obsolete-variable.
(ido-minibuffer-setup-hook): Simplify example.
(ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
(ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
(ido-completion-help, ido-completing-read): Fix typos in docstrings.
(ido-everywhere): Reflow docstring.
(ido-toggle-vc): Doc fix.
(ido-switch-buffer, ido-find-file): Use tabs to improve legibility
of long list of keybindings.
2014-03-03 02:27:08 +00:00
|
|
|
|
(add-hook 'icomplete-minibuffer-setup-hook
|
|
|
|
|
(lambda () (setq-local 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.")
|
|
|
|
|
|
2013-09-16 19:09:24 +00:00
|
|
|
|
(defun icomplete-pre-command-hook ()
|
|
|
|
|
(let ((non-essential t))
|
|
|
|
|
(icomplete-tidy)))
|
1994-09-18 08:27:12 +00:00
|
|
|
|
|
2013-09-16 19:09:24 +00:00
|
|
|
|
(defun icomplete-post-command-hook ()
|
|
|
|
|
(let ((non-essential t)) ;E.g. don't prompt for password!
|
|
|
|
|
(icomplete-exhibit)))
|
1994-09-18 08:27:12 +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)
|
2014-02-12 08:27:27 +00:00
|
|
|
|
map)
|
|
|
|
|
"Keymap used by `icomplete-mode' in the minibuffer.")
|
2012-11-29 21:32:24 +00:00
|
|
|
|
|
|
|
|
|
(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-16 19:09:24 +00:00
|
|
|
|
(let* ((beg (icomplete--field-beg))
|
|
|
|
|
(end (icomplete--field-end))
|
2013-09-06 22:46:44 +00:00
|
|
|
|
(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-16 19:09:24 +00:00
|
|
|
|
(let* ((beg (icomplete--field-beg))
|
|
|
|
|
(end (icomplete--field-end))
|
2013-09-06 22:46:44 +00:00
|
|
|
|
(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
|
2014-02-12 08:27:27 +00:00
|
|
|
|
the mode if ARG is omitted or nil.
|
|
|
|
|
|
|
|
|
|
When this global minor mode is enabled, typing in the minibuffer
|
|
|
|
|
continuously displays a list of possible completions that match
|
|
|
|
|
the string you have typed. See `icomplete-completions' for a
|
|
|
|
|
description of how prospective completions are displayed.
|
|
|
|
|
|
|
|
|
|
For more information, see Info node `(emacs)Icomplete'.
|
lisp/icomplete.el, lisp/ido.el: Doc fixes.
lisp/icomplete.el: Miscellaneous doc fixes.
Use Icomplete everywhere instead of icomplete for consistency.
(icomplete-max-delay-chars): Fix typo.
(icomplete-mode): Use \[].
(icomplete-tidy, icomplete-exhibit): Reflow.
(icomplete-minibuffer-setup-hook, icomplete-completions):
Remove superfluous backlashes.
lisp/ido.el: Miscellaneous doc fixes.
Use Ido everywhere instead of ido or `ido' for consistency.
(ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
(ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
(ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
(ido-separator): Extract obsolescence info from docstring and declare
with make-obsolete-variable.
(ido-minibuffer-setup-hook): Simplify example.
(ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
(ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
(ido-completion-help, ido-completing-read): Fix typos in docstrings.
(ido-everywhere): Reflow docstring.
(ido-toggle-vc): Doc fix.
(ido-switch-buffer, ido-find-file): Use tabs to improve legibility
of long list of keybindings.
2014-03-03 02:27:08 +00:00
|
|
|
|
For options you can set, `\\[customize-group] icomplete'.
|
2014-02-12 08:27:27 +00:00
|
|
|
|
|
|
|
|
|
You can use the following key bindings to navigate and select
|
|
|
|
|
completions:
|
|
|
|
|
|
|
|
|
|
\\{icomplete-minibuffer-map}"
|
2005-03-21 19:19:26 +00:00
|
|
|
|
:global t :group 'icomplete
|
2013-09-16 19:09:24 +00:00
|
|
|
|
(remove-hook 'minibuffer-setup-hook #'icomplete-minibuffer-setup)
|
|
|
|
|
(remove-hook 'completion-in-region-mode-hook #'icomplete--in-region-setup)
|
|
|
|
|
(when icomplete-mode
|
|
|
|
|
(when icomplete-in-buffer
|
|
|
|
|
(add-hook 'completion-in-region-mode-hook #'icomplete--in-region-setup))
|
|
|
|
|
(add-hook 'minibuffer-setup-hook #'icomplete-minibuffer-setup)))
|
|
|
|
|
|
|
|
|
|
(defun icomplete--completion-table ()
|
|
|
|
|
(if (window-minibuffer-p) minibuffer-completion-table
|
|
|
|
|
(or (nth 2 completion-in-region--data)
|
|
|
|
|
(message "In %S (w=%S): %S"
|
|
|
|
|
(current-buffer) (selected-window) (window-minibuffer-p)))))
|
|
|
|
|
(defun icomplete--completion-predicate ()
|
|
|
|
|
(if (window-minibuffer-p) minibuffer-completion-predicate
|
|
|
|
|
(nth 3 completion-in-region--data)))
|
|
|
|
|
(defun icomplete--field-string ()
|
|
|
|
|
(if (window-minibuffer-p) (minibuffer-contents)
|
|
|
|
|
(buffer-substring-no-properties
|
|
|
|
|
(nth 0 completion-in-region--data)
|
|
|
|
|
(nth 1 completion-in-region--data))))
|
|
|
|
|
(defun icomplete--field-beg ()
|
|
|
|
|
(if (window-minibuffer-p) (minibuffer-prompt-end)
|
|
|
|
|
(nth 0 completion-in-region--data)))
|
|
|
|
|
(defun icomplete--field-end ()
|
|
|
|
|
(if (window-minibuffer-p) (point-max)
|
|
|
|
|
(nth 1 completion-in-region--data)))
|
1994-09-18 08:27:12 +00:00
|
|
|
|
|
|
|
|
|
;;;_ > icomplete-simple-completing-p ()
|
|
|
|
|
(defun icomplete-simple-completing-p ()
|
2014-02-12 08:27:27 +00:00
|
|
|
|
"Non-nil if current window is a minibuffer that's doing simple completion.
|
1994-09-18 08:27:12 +00:00
|
|
|
|
|
|
|
|
|
Conditions are:
|
|
|
|
|
the selected window is a minibuffer,
|
|
|
|
|
and not in the middle of macro execution,
|
2013-09-16 19:09:24 +00:00
|
|
|
|
and the completion table is not a function (which would
|
1996-01-04 23:41:53 +00:00
|
|
|
|
indicate some non-standard, non-simple completion mechanism,
|
2014-02-09 03:49:02 +00:00
|
|
|
|
like file-name and other custom-func completions),
|
|
|
|
|
and `icomplete-with-completion-tables' doesn't restrict completion."
|
1994-09-18 08:27:12 +00:00
|
|
|
|
|
2013-09-16 19:09:24 +00:00
|
|
|
|
(unless executing-kbd-macro
|
|
|
|
|
(let ((table (icomplete--completion-table)))
|
|
|
|
|
(and table
|
|
|
|
|
(or (not (functionp table))
|
|
|
|
|
(eq icomplete-with-completion-tables t)
|
|
|
|
|
(member table 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)))
|
2013-09-16 19:09:24 +00:00
|
|
|
|
(add-hook 'pre-command-hook #'icomplete-pre-command-hook nil t)
|
|
|
|
|
(add-hook 'post-command-hook #'icomplete-post-command-hook nil t)
|
2013-12-24 03:48:55 +00:00
|
|
|
|
(run-hooks 'icomplete-minibuffer-setup-hook)
|
|
|
|
|
(when icomplete-show-matches-on-no-input
|
|
|
|
|
(icomplete-exhibit))))
|
2013-09-16 19:09:24 +00:00
|
|
|
|
|
|
|
|
|
(defvar icomplete--in-region-buffer nil)
|
|
|
|
|
|
|
|
|
|
(defun icomplete--in-region-setup ()
|
|
|
|
|
(when (or (not completion-in-region-mode)
|
|
|
|
|
(and icomplete--in-region-buffer
|
|
|
|
|
(not (eq icomplete--in-region-buffer (current-buffer)))))
|
|
|
|
|
(with-current-buffer (or icomplete--in-region-buffer (current-buffer))
|
|
|
|
|
(setq icomplete--in-region-buffer nil)
|
|
|
|
|
(delete-overlay icomplete-overlay)
|
|
|
|
|
(kill-local-variable 'completion-show-inline-help)
|
|
|
|
|
(remove-hook 'pre-command-hook 'icomplete-pre-command-hook t)
|
|
|
|
|
(remove-hook 'post-command-hook 'icomplete-post-command-hook t)
|
|
|
|
|
(message nil)))
|
|
|
|
|
(when (and completion-in-region-mode
|
|
|
|
|
icomplete-mode (icomplete-simple-completing-p))
|
|
|
|
|
(setq icomplete--in-region-buffer (current-buffer))
|
|
|
|
|
(set (make-local-variable 'completion-show-inline-help) nil)
|
|
|
|
|
(let ((tem (assq 'completion-in-region-mode
|
|
|
|
|
minor-mode-overriding-map-alist)))
|
|
|
|
|
(unless (memq icomplete-minibuffer-map (cdr tem))
|
|
|
|
|
(setcdr tem (make-composed-keymap icomplete-minibuffer-map
|
|
|
|
|
(cdr tem)))))
|
|
|
|
|
(add-hook 'pre-command-hook 'icomplete-pre-command-hook nil t)
|
|
|
|
|
(add-hook 'post-command-hook 'icomplete-post-command-hook nil t)))
|
|
|
|
|
|
1999-11-21 13:44:26 +00:00
|
|
|
|
|
|
|
|
|
|
1994-09-18 08:27:12 +00:00
|
|
|
|
;;;_* Completion
|
|
|
|
|
|
|
|
|
|
;;;_ > icomplete-tidy ()
|
|
|
|
|
(defun icomplete-tidy ()
|
lisp/icomplete.el, lisp/ido.el: Doc fixes.
lisp/icomplete.el: Miscellaneous doc fixes.
Use Icomplete everywhere instead of icomplete for consistency.
(icomplete-max-delay-chars): Fix typo.
(icomplete-mode): Use \[].
(icomplete-tidy, icomplete-exhibit): Reflow.
(icomplete-minibuffer-setup-hook, icomplete-completions):
Remove superfluous backlashes.
lisp/ido.el: Miscellaneous doc fixes.
Use Ido everywhere instead of ido or `ido' for consistency.
(ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
(ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
(ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
(ido-separator): Extract obsolescence info from docstring and declare
with make-obsolete-variable.
(ido-minibuffer-setup-hook): Simplify example.
(ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
(ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
(ido-completion-help, ido-completing-read): Fix typos in docstrings.
(ido-everywhere): Reflow docstring.
(ido-toggle-vc): Doc fix.
(ido-switch-buffer, ido-find-file): Use tabs to improve legibility
of long list of keybindings.
2014-03-03 02:27:08 +00:00
|
|
|
|
"Remove completions display (if any) prior to new user input.
|
|
|
|
|
Should be run in on the minibuffer `pre-command-hook'.
|
|
|
|
|
See `icomplete-mode' 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 ()
|
lisp/icomplete.el, lisp/ido.el: Doc fixes.
lisp/icomplete.el: Miscellaneous doc fixes.
Use Icomplete everywhere instead of icomplete for consistency.
(icomplete-max-delay-chars): Fix typo.
(icomplete-mode): Use \[].
(icomplete-tidy, icomplete-exhibit): Reflow.
(icomplete-minibuffer-setup-hook, icomplete-completions):
Remove superfluous backlashes.
lisp/ido.el: Miscellaneous doc fixes.
Use Ido everywhere instead of ido or `ido' for consistency.
(ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
(ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
(ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
(ido-separator): Extract obsolescence info from docstring and declare
with make-obsolete-variable.
(ido-minibuffer-setup-hook): Simplify example.
(ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
(ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
(ido-completion-help, ido-completing-read): Fix typos in docstrings.
(ido-everywhere): Reflow docstring.
(ido-toggle-vc): Doc fix.
(ido-switch-buffer, ido-find-file): Use tabs to improve legibility
of long list of keybindings.
2014-03-03 02:27:08 +00:00
|
|
|
|
"Insert Icomplete completions display.
|
|
|
|
|
Should be run via minibuffer `post-command-hook'.
|
|
|
|
|
See `icomplete-mode' 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:
|
2013-12-24 03:48:55 +00:00
|
|
|
|
(if (and (or icomplete-show-matches-on-no-input
|
|
|
|
|
(> (icomplete--field-end) (icomplete--field-beg)))
|
2012-11-29 21:32:24 +00:00
|
|
|
|
(or
|
|
|
|
|
;; Don't bother with delay after certain number of chars:
|
2013-09-16 19:09:24 +00:00
|
|
|
|
(> (- (point) (icomplete--field-beg))
|
|
|
|
|
icomplete-max-delay-chars)
|
2012-11-29 21:32:24 +00:00
|
|
|
|
;; Don't delay if the completions are known.
|
|
|
|
|
completion-all-sorted-completions
|
|
|
|
|
;; Don't delay if alternatives number is small enough:
|
2013-09-16 19:09:24 +00:00
|
|
|
|
(and (sequencep (icomplete--completion-table))
|
|
|
|
|
(< (length (icomplete--completion-table))
|
2012-11-29 21:32:24 +00:00
|
|
|
|
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)))
|
2013-09-16 19:09:24 +00:00
|
|
|
|
(let* ((field-string (icomplete--field-string))
|
|
|
|
|
(text (while-no-input
|
|
|
|
|
(icomplete-completions
|
|
|
|
|
field-string
|
|
|
|
|
(icomplete--completion-table)
|
|
|
|
|
(icomplete--completion-predicate)
|
|
|
|
|
(if (window-minibuffer-p)
|
|
|
|
|
(not minibuffer-completion-confirm)))))
|
|
|
|
|
(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
|
lisp/icomplete.el, lisp/ido.el: Doc fixes.
lisp/icomplete.el: Miscellaneous doc fixes.
Use Icomplete everywhere instead of icomplete for consistency.
(icomplete-max-delay-chars): Fix typo.
(icomplete-mode): Use \[].
(icomplete-tidy, icomplete-exhibit): Reflow.
(icomplete-minibuffer-setup-hook, icomplete-completions):
Remove superfluous backlashes.
lisp/ido.el: Miscellaneous doc fixes.
Use Ido everywhere instead of ido or `ido' for consistency.
(ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
(ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
(ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
(ido-separator): Extract obsolescence info from docstring and declare
with make-obsolete-variable.
(ido-minibuffer-setup-hook): Simplify example.
(ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
(ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
(ido-completion-help, ido-completing-read): Fix typos in docstrings.
(ido-everywhere): Reflow docstring.
(ido-toggle-vc): Doc fix.
(ido-switch-buffer, ido-find-file): Use tabs to improve legibility
of long list of keybindings.
2014-03-03 02:27:08 +00:00
|
|
|
|
one of (), [], or {} pairs. The choice of brackets is as follows:
|
1993-11-24 00:36:31 +00:00
|
|
|
|
|
lisp/icomplete.el, lisp/ido.el: Doc fixes.
lisp/icomplete.el: Miscellaneous doc fixes.
Use Icomplete everywhere instead of icomplete for consistency.
(icomplete-max-delay-chars): Fix typo.
(icomplete-mode): Use \[].
(icomplete-tidy, icomplete-exhibit): Reflow.
(icomplete-minibuffer-setup-hook, icomplete-completions):
Remove superfluous backlashes.
lisp/ido.el: Miscellaneous doc fixes.
Use Ido everywhere instead of ido or `ido' for consistency.
(ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
(ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
(ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
(ido-separator): Extract obsolescence info from docstring and declare
with make-obsolete-variable.
(ido-minibuffer-setup-hook): Simplify example.
(ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
(ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
(ido-completion-help, ido-completing-read): Fix typos in docstrings.
(ido-everywhere): Reflow docstring.
(ido-toggle-vc): Doc fix.
(ido-switch-buffer, ido-find-file): Use tabs to improve legibility
of long list of keybindings.
2014-03-03 02:27:08 +00:00
|
|
|
|
(...) - 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
|
|
|
|
|
2014-02-12 08:27:27 +00:00
|
|
|
|
If there are multiple possibilities, `icomplete-separator' separates them.
|
|
|
|
|
|
1996-01-04 23:41:53 +00:00
|
|
|
|
The displays for unambiguous matches have ` [Matched]' appended
|
lisp/icomplete.el, lisp/ido.el: Doc fixes.
lisp/icomplete.el: Miscellaneous doc fixes.
Use Icomplete everywhere instead of icomplete for consistency.
(icomplete-max-delay-chars): Fix typo.
(icomplete-mode): Use \[].
(icomplete-tidy, icomplete-exhibit): Reflow.
(icomplete-minibuffer-setup-hook, icomplete-completions):
Remove superfluous backlashes.
lisp/ido.el: Miscellaneous doc fixes.
Use Ido everywhere instead of ido or `ido' for consistency.
(ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
(ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
(ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
(ido-separator): Extract obsolescence info from docstring and declare
with make-obsolete-variable.
(ido-minibuffer-setup-hook): Simplify example.
(ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
(ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
(ido-completion-help, ido-completing-read): Fix typos in docstrings.
(ido-everywhere): Reflow docstring.
(ido-toggle-vc): Doc fix.
(ido-switch-buffer, ido-find-file): Use tabs to improve legibility
of long list of keybindings.
2014-03-03 02:27:08 +00:00
|
|
|
|
\(whether complete or not), or ` [No matches]', if no eligible
|
2014-02-12 08:27:27 +00:00
|
|
|
|
matches exist."
|
2013-09-16 19:09:24 +00:00
|
|
|
|
(let* ((minibuffer-completion-table candidates)
|
|
|
|
|
(minibuffer-completion-predicate predicate)
|
|
|
|
|
(md (completion--field-metadata (icomplete--field-beg)))
|
2013-09-06 22:46:44 +00:00
|
|
|
|
(comps (completion-all-sorted-completions
|
2013-09-16 19:09:24 +00:00
|
|
|
|
(icomplete--field-beg) (icomplete--field-end)))
|
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))
|
2013-09-16 19:09:24 +00:00
|
|
|
|
(progn ;;(debug (format "Candidates=%S field=%S" candidates name))
|
|
|
|
|
(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))
|
2014-03-01 01:25:29 +00:00
|
|
|
|
(ellipsis (if (char-displayable-p ?…) "…" "..."))
|
2008-05-20 03:36:20 +00:00
|
|
|
|
(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.
|
2014-03-02 00:50:07 +00:00
|
|
|
|
((< compare (+ 2 (string-width ellipsis))) most)
|
2014-03-01 01:25:29 +00:00
|
|
|
|
(t (concat ellipsis (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)
|
2014-03-02 00:50:07 +00:00
|
|
|
|
(+ 2 (string-width ellipsis)) ;; take {…} into account
|
2013-01-04 08:20:49 +00:00
|
|
|
|
(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-12-14 14:24:36 +00:00
|
|
|
|
;; Find the common prefix among `comps'.
|
|
|
|
|
;; 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
|
|
|
|
(prefix (when icomplete-hide-common-prefix
|
|
|
|
|
(try-completion "" comps)))
|
2008-05-20 03:36:20 +00:00
|
|
|
|
(prefix-len
|
2013-12-14 14:24:36 +00:00
|
|
|
|
(and (stringp prefix)
|
|
|
|
|
;; Only hide the prefix if the corresponding info
|
|
|
|
|
;; is already displayed via `most'.
|
|
|
|
|
(string-prefix-p prefix most t)
|
|
|
|
|
(length prefix))) ;;)
|
2013-02-13 15:13:22 +00:00
|
|
|
|
prospects comp limit)
|
2013-09-16 19:09:24 +00:00
|
|
|
|
(if (or (eq most-try t) (not (consp (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)
|
2014-03-03 03:40:48 +00:00
|
|
|
|
(and limit (concat icomplete-separator ellipsis))
|
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
|
|
|
|
|
2014-10-06 14:12:56 +00:00
|
|
|
|
;;; Iswitchb compatibility
|
|
|
|
|
|
|
|
|
|
;; We moved Iswitchb to `obsolete' in 24.4, but autoloads in files in
|
|
|
|
|
;; `obsolete' aren't obeyed (since that would encourage people to keep using
|
|
|
|
|
;; those packages, oblivious to their obsolescence). Given the fact that
|
|
|
|
|
;; Iswitchb was very popular, we decided to keep its autoload for a bit longer,
|
|
|
|
|
;; so we moved it here.
|
|
|
|
|
|
|
|
|
|
;;;###autoload(when (locate-library "obsolete/iswitchb")
|
|
|
|
|
;;;###autoload (autoload 'iswitchb-mode "iswitchb" "Toggle Iswitchb mode." t)
|
|
|
|
|
;;;###autoload (make-obsolete 'iswitchb-mode
|
|
|
|
|
;;;###autoload "use `icomplete-mode' or `ido-mode' instead." "24.4"))
|
|
|
|
|
|
2013-12-23 15:01:32 +00:00
|
|
|
|
;;;_* Provide
|
|
|
|
|
(provide 'icomplete)
|
|
|
|
|
|
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
|