2000-05-24 15:12:19 +00:00
|
|
|
|
;;; icomplete.el --- minibuffer completion incremental feedback
|
1994-09-18 08:27:12 +00:00
|
|
|
|
|
2012-01-05 09:46:05 +00:00
|
|
|
|
;; Copyright (C) 1992-1994, 1997, 1999, 2001-2012
|
2011-01-26 08:36:39 +00:00
|
|
|
|
;; 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")
|
|
|
|
|
|
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-show-key-bindings t
|
2008-03-20 09:17:22 +00:00
|
|
|
|
"If non-nil, show key bindings as well as completion for sole matches."
|
1998-01-24 11:35:59 +00:00
|
|
|
|
:type 'boolean
|
|
|
|
|
: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)
|
|
|
|
|
|
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
|
|
|
|
(defun icomplete-get-keys (func-name)
|
2008-05-31 23:51:57 +00:00
|
|
|
|
"Return strings naming keys bound to FUNC-NAME, or nil if none.
|
1997-06-15 02:37:58 +00:00
|
|
|
|
Examines the prior, not current, buffer, presuming that current buffer
|
|
|
|
|
is minibuffer."
|
2008-05-31 23:51:57 +00:00
|
|
|
|
(when (commandp func-name)
|
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
|
|
|
|
(save-excursion
|
|
|
|
|
(let* ((sym (intern func-name))
|
2006-02-17 21:54:35 +00:00
|
|
|
|
(buf (other-buffer nil t))
|
2008-01-18 03:19:07 +00:00
|
|
|
|
(keys (with-current-buffer buf (where-is-internal sym))))
|
2008-05-31 23:51:57 +00:00
|
|
|
|
(when keys
|
|
|
|
|
(concat "<"
|
|
|
|
|
(mapconcat 'key-description
|
|
|
|
|
(sort keys
|
|
|
|
|
#'(lambda (x y)
|
|
|
|
|
(< (length x) (length y))))
|
|
|
|
|
", ")
|
|
|
|
|
">"))))))
|
2006-09-23 18:39:22 +00:00
|
|
|
|
;;;_ = icomplete-with-completion-tables
|
|
|
|
|
(defvar icomplete-with-completion-tables '(internal-complete-buffer)
|
|
|
|
|
"Specialized completion tables with which icomplete should operate.
|
|
|
|
|
|
|
|
|
|
Icomplete does not operate with any specialized completion tables
|
|
|
|
|
except those on this list.")
|
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
|
|
|
|
|
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)."
|
|
|
|
|
|
|
|
|
|
(and (window-minibuffer-p (selected-window))
|
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)
|
2005-03-21 19:19:26 +00:00
|
|
|
|
(add-hook 'pre-command-hook
|
|
|
|
|
(lambda () (run-hooks 'icomplete-pre-command-hook))
|
|
|
|
|
nil t)
|
|
|
|
|
(add-hook 'post-command-hook
|
|
|
|
|
(lambda () (run-hooks 'icomplete-post-command-hook))
|
|
|
|
|
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'."
|
2006-11-28 09:22:13 +00:00
|
|
|
|
(when (and icomplete-mode (icomplete-simple-completing-p))
|
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))
|
|
|
|
|
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 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
|
|
|
|
|
;; embarking on computing completions:
|
|
|
|
|
(sit-for icomplete-compute-delay)))
|
|
|
|
|
(let ((text (while-no-input
|
2005-08-09 02:51:55 +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.
|
2008-05-22 03:15:32 +00:00
|
|
|
|
(when (stringp text)
|
|
|
|
|
(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.)"
|
|
|
|
|
|
2010-04-21 19:48:42 +00:00
|
|
|
|
(let* ((non-essential t)
|
2011-05-31 03:03:38 +00:00
|
|
|
|
(md (completion--field-metadata (field-beginning)))
|
2010-04-21 19:48:42 +00:00
|
|
|
|
(comps (completion-all-sorted-completions))
|
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))
|
|
|
|
|
((< compare 5) most)
|
|
|
|
|
(t (concat "..." (substring most compare))))
|
|
|
|
|
close-bracket)))
|
2005-03-21 19:19:26 +00:00
|
|
|
|
;;"-prospects" - more than one candidate
|
2008-05-29 16:25:12 +00:00
|
|
|
|
(prospects-len (+ (length determ) 6 ;; take {,...} into account
|
|
|
|
|
(string-width (buffer-string))))
|
|
|
|
|
(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)))
|
2008-05-20 03:36:20 +00:00
|
|
|
|
(prefix-len
|
|
|
|
|
;; Find the common prefix among `comps'.
|
|
|
|
|
(if (eq t (compare-strings (car comps) nil (length most)
|
2008-05-22 03:15:32 +00:00
|
|
|
|
most nil nil completion-ignore-case))
|
2008-05-20 03:36:20 +00:00
|
|
|
|
;; Common case.
|
|
|
|
|
(length most)
|
|
|
|
|
;; Else, use try-completion.
|
|
|
|
|
(let ((comps-prefix (try-completion "" comps)))
|
|
|
|
|
(and (stringp comps-prefix)
|
|
|
|
|
(length comps-prefix)))))
|
|
|
|
|
|
2008-03-20 10:28:55 +00:00
|
|
|
|
prospects most-is-exact 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)
|
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-20 08:06:52 +00:00
|
|
|
|
(if (and prefix-len (<= prefix-len (length (car comps))))
|
|
|
|
|
(substring (car comps) prefix-len)
|
|
|
|
|
(car comps))
|
1999-11-21 13:44:26 +00:00
|
|
|
|
comps (cdr comps))
|
|
|
|
|
(cond ((string-equal comp "") (setq most-is-exact t))
|
|
|
|
|
((member comp prospects))
|
2008-05-29 16:25:12 +00:00
|
|
|
|
(t (setq prospects-len
|
|
|
|
|
(+ (string-width comp) 1 prospects-len))
|
|
|
|
|
(if (< prospects-len prospects-max)
|
2008-05-22 03:15:32 +00:00
|
|
|
|
(push comp prospects)
|
2008-03-20 10:28:55 +00:00
|
|
|
|
(setq limit t))))))
|
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
|
|
|
|
"{"
|
1999-11-21 13:44:26 +00:00
|
|
|
|
(and most-is-exact ",")
|
2008-05-22 03:15:32 +00:00
|
|
|
|
(mapconcat 'identity (nreverse prospects) ",")
|
|
|
|
|
(and limit ",...")
|
2005-03-21 19:19:26 +00:00
|
|
|
|
"}")
|
1999-11-21 13:44:26 +00:00
|
|
|
|
(concat determ
|
|
|
|
|
" [Matched"
|
|
|
|
|
(let ((keys (and icomplete-show-key-bindings
|
|
|
|
|
(commandp (intern-soft most))
|
|
|
|
|
(icomplete-get-keys most))))
|
2005-03-21 19:19:26 +00:00
|
|
|
|
(if keys (concat "; " keys) ""))
|
1999-11-21 13:44:26 +00:00
|
|
|
|
"]"))))))
|
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
|