(ediff-profile): Use make-local-hook and add and remove hooks locally.
[bpt/emacs.git] / lisp / icomplete.el
... / ...
CommitLineData
1;;;_. icomplete.el - minibuffer completion incremental feedback
2
3;;; Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
4
5;;; Author: Ken Manheimer <klm@nist.gov>
6;;; Maintainer: Ken Manheimer <klm@nist.gov>
7;;; Version: Id: icomplete.el,v 4.3 1994/08/31 18:48:29 klm Exp
8;;; Created: Mar 1993 klm@nist.gov - first release to usenet
9;;; Keywords: help, abbrev
10
11;; This file is part of GNU Emacs.
12
13;; GNU Emacs is free software; you can redistribute it and/or modify
14;; it under the terms of the GNU General Public License as published by
15;; the Free Software Foundation; either version 2, or (at your option)
16;; any later version.
17
18;; GNU Emacs is distributed in the hope that it will be useful,
19;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21;; GNU General Public License for more details.
22
23;; You should have received a copy of the GNU General Public License
24;; along with GNU Emacs; see the file COPYING. If not, write to
25;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
26
27;;; Commentary:
28
29;;; Loading this package implements a more fine-grained minibuffer
30;;; completion feedback scheme. Prospective completions are concisely
31;;; indicated within the minibuffer itself, with each successive
32;;; keystroke.
33
34;;; See 'icomplete-completions' docstring for a description of the
35;;; icomplete display format.
36
37;;; See the `icomplete-minibuffer-setup-hook' docstring for a means to
38;;; customize icomplete setup for interoperation with other
39;;; minibuffer-oriented packages.
40
41;;; To activate icomplete mode, simply load the package. You can
42;;; subsequently deactivate it by invoking the function icomplete-mode
43;;; with a negative prefix-arg (C-U -1 ESC-x icomplete-mode). Also,
44;;; you can prevent activation of the mode during package load by
45;;; first setting the variable `icomplete-mode' to nil. Icompletion
46;;; can be enabled any time after the package is loaded by invoking
47;;; icomplete-mode without a prefix arg.
48
49;;; Thanks to everyone for their suggestions for refinements of this
50;;; package. I particularly have to credit Michael Cook, who
51;;; implemented an incremental completion style in his 'iswitch'
52;;; functions that served as a model for icomplete. Some other
53;;; contributors: Noah Freidman (restructuring as minor mode), Colin
54;;; Rafferty (lemacs reconciliation), Lars Lindberg, RMS, and
55;;; others.
56
57;;; klm.
58
59;;; Code:
60
61;;;_* Provide
62(provide 'icomplete)
63
64;;;_* User Customization variables
65
66;;;_* Initialization
67;;;_ = icomplete-minibuffer-setup-hook
68(defvar icomplete-minibuffer-setup-hook nil
69 "*Icomplete-specific customization of minibuffer setup.
70
71This hook is run during minibuffer setup iff icomplete will be active.
72It is intended for use in customizing icomplete for interoperation
73with other packages. For instance:
74
75 \(add-hook 'icomplete-minibuffer-setup-hook
76 \(function
77 \(lambda ()
78 \(make-local-variable 'resize-minibuffer-window-max-height)
79 \(setq resize-minibuffer-window-max-height 3))))
80
81will constrain rsz-mini to a maximum minibuffer height of 3 lines when
82icompletion is occurring.")
83
84;;;_ + Internal Variables
85;;;_ = icomplete-mode
86(defvar icomplete-mode t
87 "Non-nil enables incremental minibuffer completion, once
88`\\[icomplete-mode]' function has set things up.")
89;;;_ = icomplete-eoinput 1
90(defvar icomplete-eoinput 1
91 "Point where minibuffer input ends and completion info begins.")
92(make-variable-buffer-local 'icomplete-eoinput)
93;;;_ = icomplete-pre-command-hook
94(defvar icomplete-pre-command-hook nil
95 "Incremental-minibuffer-completion pre-command-hook.
96
97Is run in minibuffer before user input when `icomplete-mode' is non-nil.
98Use `icomplete-mode' function to set it up properly for incremental
99minibuffer completion.")
100(add-hook 'icomplete-pre-command-hook 'icomplete-tidy)
101;;;_ = icomplete-post-command-hook
102(defvar icomplete-post-command-hook nil
103 "Incremental-minibuffer-completion post-command-hook.
104
105Is run in minibuffer after user input when `icomplete-mode' is non-nil.
106Use `icomplete-mode' function to set it up properly for incremental
107minibuffer completion.")
108(add-hook 'icomplete-post-command-hook 'icomplete-exhibit)
109
110;;;_ > icomplete-mode (&optional prefix)
111;;;###autoload
112(defun icomplete-mode (&optional prefix)
113 "Activate incremental minibuffer completion for this emacs session,
114or deactivate with negative prefix arg."
115 (interactive "p")
116 (or prefix (setq prefix 0))
117 (cond ((>= prefix 0)
118 (setq icomplete-mode t)
119 ;; The following is not really necessary after first time -
120 ;; no great loss.
121 (add-hook 'minibuffer-setup-hook 'icomplete-minibuffer-setup))
122 (t (setq icomplete-mode nil))))
123
124;;;_ > icomplete-simple-completing-p ()
125(defun icomplete-simple-completing-p ()
126
127 "Non-nil if current window is minibuffer that's doing simple completion.
128
129Conditions are:
130 the selected window is a minibuffer,
131 and not in the middle of macro execution,
132 and minibuffer-completion-table is not a symbol (which would
133 indicate some non-standard, non-simple completion mechansm,
134 like file-name and other custom-func completions)."
135
136 (and (window-minibuffer-p (selected-window))
137 (not executing-macro)
138 (not (symbolp minibuffer-completion-table))))
139;;;_ > icomplete-minibuffer-setup ()
140;;;###autoload
141(defun icomplete-minibuffer-setup ()
142
143 "Run in minibuffer on activation to establish incremental completion.
144
145Usually run by inclusion in minibuffer-setup-hook."
146
147 (cond ((and icomplete-mode (icomplete-simple-completing-p))
148 (make-local-variable 'pre-command-hook)
149 (setq pre-command-hook (copy-sequence pre-command-hook))
150 (add-hook 'pre-command-hook
151 (function (lambda ()
152 (run-hooks 'icomplete-pre-command-hook))))
153 (make-local-variable 'post-command-hook)
154 (setq post-command-hook (copy-sequence post-command-hook))
155 (add-hook 'post-command-hook
156 (function (lambda ()
157 (run-hooks 'icomplete-post-command-hook))))
158 (run-hooks 'icomplete-minibuffer-setup-hook))))
159
160;;;_* Completion
161
162;;;_ > icomplete-tidy ()
163(defun icomplete-tidy ()
164 "Remove completions display \(if any) prior to new user input.
165
166Should be run in on the minibuffer pre-command-hook. See `icomplete-mode'
167and `minibuffer-setup-hook'."
168 (if (icomplete-simple-completing-p)
169 (if (and (boundp 'icomplete-eoinput)
170 icomplete-eoinput)
171
172 (if (> icomplete-eoinput (point-max))
173 ;; Oops, got rug pulled out from under us - reinit:
174 (setq icomplete-eoinput (point-max))
175 (let ((buffer-undo-list buffer-undo-list )) ; prevent entry
176 (delete-region icomplete-eoinput (point-max))))
177
178 ;; Reestablish the local variable 'cause minibuffer-setup is weird:
179 (make-local-variable 'icomplete-eoinput)
180 (setq icomplete-eoinput 1))))
181;;;_ > icomplete-exhibit ()
182(defun icomplete-exhibit ()
183 "Insert icomplete completions display.
184
185Should be run via minibuffer post-command-hook. See `icomplete-mode'
186and `minibuffer-setup-hook'."
187 (if (icomplete-simple-completing-p)
188 (let ((contents (buffer-substring (point-min)(point-max)))
189 (buffer-undo-list t))
190 (save-excursion
191 (goto-char (point-max))
192 ; Register the end of input, so we
193 ; know where the extra stuff
194 ; (match-status info) begins:
195 (if (not (boundp 'icomplete-eoinput))
196 ;; In case it got wiped out by major mode business:
197 (make-local-variable 'icomplete-eoinput))
198 (setq icomplete-eoinput (point))
199 ; Insert the match-status information:
200 (if (> (point-max) 1)
201 (insert-string
202 (icomplete-completions contents
203 minibuffer-completion-table
204 minibuffer-completion-predicate
205 (not
206 minibuffer-completion-confirm))))))))
207;;;_ > icomplete-completions (name candidates predicate require-match)
208(defun icomplete-completions (name candidates predicate require-match)
209 "Identify prospective candidates for minibuffer completion.
210
211The display is updated with each minibuffer keystroke during
212minibuffer completion.
213
214Prospective completion suffixes (if any) are displayed, bracketed by
215one of \(), \[], or \{} pairs. The choice of brackets is as follows:
216
217 \(...) - a single prospect is identified and matching is enforced,
218 \[...] - a single prospect is identified but matching is optional, or
219 \{...} - multiple prospects, separated by commas, are indicated, and
220 further input is required to distingish a single one.
221
222The displays for disambiguous matches have \" [Matched]\" appended
223\(whether complete or not), or \" \[No matches]\", if no eligible
224matches exist."
225
226 (let ((comps (all-completions name candidates predicate))
227 ; "-determined" - only one candidate
228 (open-bracket-determined (if require-match "(" "["))
229 (close-bracket-determined (if require-match ")" "]"))
230 ;"-prospects" - more than one candidate
231 (open-bracket-prospects "{")
232 (close-bracket-prospects "}")
233 )
234 (cond ((null comps) (format " %sNo matches%s"
235 open-bracket-determined
236 close-bracket-determined))
237 ((null (cdr comps)) ;one match
238 (concat (if (and (> (length (car comps))
239 (length name)))
240 (concat open-bracket-determined
241 (substring (car comps) (length name))
242 close-bracket-determined)
243 "")
244 " [Matched]"))
245 (t ;multiple matches
246 (let* ((most (try-completion name candidates predicate))
247 (most-len (length most))
248 most-is-exact
249 (alternatives
250 (apply
251 (function concat)
252 (cdr (apply
253 (function nconc)
254 (mapcar '(lambda (com)
255 (if (= (length com) most-len)
256 ;; Most is one exact match,
257 ;; note that and leave out
258 ;; for later indication:
259 (progn
260 (setq most-is-exact t)
261 ())
262 (list ","
263 (substring com
264 most-len))))
265 comps))))))
266 (concat (and (> most-len (length name))
267 (concat open-bracket-determined
268 (substring most (length name))
269 close-bracket-determined))
270 open-bracket-prospects
271 (if most-is-exact
272 (concat "," alternatives)
273 alternatives)
274 close-bracket-prospects))))))
275
276;;;_ + Initialization
277;;; If user hasn't setq-default icomplete-mode to nil, then setup for
278;;; activation:
279(if icomplete-mode
280 (icomplete-mode))
281
282
283;;;_* Local emacs vars.
284;;;Local variables:
285;;;outline-layout: (-2 :)
286;;;End:
287
288;;; icomplete.el ends here
289