Mercurial > emacs
annotate lisp/complete.el @ 24624:07ae57ea2a18
Delete the wildcard expansion feature
since that is now standard in find-file.
(PC-try-load-many-files): Function deleted.
(PC-after-load-many-files): Function deleted.
(PC-many-files-list): Variable deleted.
(PC-disable-wildcards): Variable deleted.
(partial-completion-mode): Don't enable the wildcard feature.
(PC-look-for-include-file): Don't set global variables
`error', `buf' and `filename' here.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Mon, 26 Apr 1999 04:59:46 +0000 |
parents | ce83f341af6f |
children | e62d2121822f |
rev | line source |
---|---|
15261 | 1 ;;; complete.el --- partial completion mechanism plus other goodies |
3725 | 2 |
24624
07ae57ea2a18
Delete the wildcard expansion feature
Karl Heuer <kwzh@gnu.org>
parents:
24534
diff
changeset
|
3 ;; Copyright (C) 1990, 1991, 1992, 1993, 1999 Free Software Foundation, Inc. |
3725 | 4 |
5 ;; Author: Dave Gillespie <daveg@synaptics.com> | |
22250
a77d473867b8
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22142
diff
changeset
|
6 ;; Keywords: abbrev convenience |
3725 | 7 ;; Special thanks to Hallvard Furuseth for his many ideas and contributions. |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
6736
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
3725
diff
changeset
|
11 ;; GNU Emacs is free software; you can redistribute it and/or modify |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
3725
diff
changeset
|
12 ;; it under the terms of the GNU General Public License as published by |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
3725
diff
changeset
|
13 ;; the Free Software Foundation; either version 2, or (at your option) |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
3725
diff
changeset
|
14 ;; any later version. |
3725 | 15 |
6736
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
3725
diff
changeset
|
16 ;; GNU Emacs is distributed in the hope that it will be useful, |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
3725
diff
changeset
|
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
3725
diff
changeset
|
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
3725
diff
changeset
|
19 ;; GNU General Public License for more details. |
3725 | 20 |
6736
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
3725
diff
changeset
|
21 ;; You should have received a copy of the GNU General Public License |
14169 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
3725 | 25 |
7942 | 26 ;;; Commentary: |
3725 | 27 |
28 ;; Extended completion for the Emacs minibuffer. | |
29 ;; | |
30 ;; The basic idea is that the command name or other completable text is | |
31 ;; divided into words and each word is completed separately, so that | |
32 ;; "M-x p-b" expands to "M-x print-buffer". If the entry is ambiguous | |
33 ;; each word is completed as much as possible and then the cursor is | |
34 ;; left at the first position where typing another letter will resolve | |
35 ;; the ambiguity. | |
36 ;; | |
37 ;; Word separators for this purpose are hyphen, space, and period. | |
38 ;; These would most likely occur in command names, Info menu items, | |
39 ;; and file names, respectively. But all word separators are treated | |
40 ;; alike at all times. | |
41 ;; | |
42 ;; This completion package replaces the old-style completer's key | |
43 ;; bindings for TAB, SPC, RET, and `?'. The old completer is still | |
44 ;; available on the Meta versions of those keys. If you set | |
45 ;; PC-meta-flag to nil, the old completion keys will be left alone | |
46 ;; and the partial completer will use the Meta versions of the keys. | |
47 | |
48 | |
22142 | 49 ;; Usage: M-x partial-completion-mode. During completable minibuffer entry, |
3725 | 50 ;; |
51 ;; TAB means to do a partial completion; | |
52 ;; SPC means to do a partial complete-word; | |
53 ;; RET means to do a partial complete-and-exit; | |
54 ;; ? means to do a partial completion-help. | |
55 ;; | |
56 ;; If you set PC-meta-flag to nil, then TAB, SPC, RET, and ? perform | |
57 ;; original Emacs completions, and M-TAB etc. do partial completion. | |
58 ;; To do this, put the command, | |
59 ;; | |
60 ;; (setq PC-meta-flag nil) | |
61 ;; | |
62 ;; in your .emacs file. To load partial completion automatically, put | |
63 ;; | |
22142 | 64 ;; (partial-completion-mode t) |
3725 | 65 ;; |
66 ;; in your .emacs file, too. Things will be faster if you byte-compile | |
67 ;; this file when you install it. | |
68 ;; | |
69 ;; As an extra feature, in cases where RET would not normally | |
70 ;; complete (such as `C-x b'), the M-RET key will always do a partial | |
71 ;; complete-and-exit. Thus `C-x b f.c RET' will select or create a | |
72 ;; buffer called "f.c", but `C-x b f.c M-RET' will select the existing | |
73 ;; buffer whose name matches that pattern (perhaps "filing.c"). | |
74 ;; (PC-meta-flag does not affect this behavior; M-RET used to be | |
75 ;; undefined in this situation.) | |
76 ;; | |
77 ;; The regular M-TAB (lisp-complete-symbol) command also supports | |
78 ;; partial completion in this package. | |
79 | |
80 ;; File name completion does not do partial completion of directories | |
81 ;; on the path, e.g., "/u/b/f" will not complete to "/usr/bin/foo", | |
82 ;; but you can put *'s in the path to accomplish this: "/u*/b*/f". | |
83 ;; Stars are required for performance reasons. | |
84 | |
85 ;; In addition, this package includes a feature for accessing include | |
86 ;; files. For example, `C-x C-f <sys/time.h> RET' reads the file | |
87 ;; /usr/include/sys/time.h. The variable PC-include-file-path is a | |
88 ;; list of directories in which to search for include files. Completion | |
89 ;; is supported in include file names. | |
90 | |
91 | |
7942 | 92 ;;; Code: |
3725 | 93 |
18981
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
94 (defgroup partial-completion nil |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
95 "Partial Completion of items." |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
96 :prefix "pc-" |
22250
a77d473867b8
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22142
diff
changeset
|
97 :group 'minibuffer |
a77d473867b8
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22142
diff
changeset
|
98 :group 'convenience) |
3725 | 99 |
18981
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
100 (defcustom partial-completion-mode nil |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
101 "Toggle Partial Completion mode. |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
102 When Partial Completion mode is enabled, TAB (or M-TAB if `PC-meta-flag' is |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
103 nil) is enhanced so that if some string is divided into words and each word is |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
104 delimited by a character in `PC-word-delimiters', partial words are completed |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
105 as much as possible and `*' characters are treated likewise in file names. |
24534
ce83f341af6f
(partial-completion-mode): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
24507
diff
changeset
|
106 This variable should be set only with \\[customize], which is equivalent |
ce83f341af6f
(partial-completion-mode): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
24507
diff
changeset
|
107 to using the function `partial-completion-mode'." |
18981
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
108 :set (lambda (symbol value) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
109 (partial-completion-mode (or value 0))) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
110 :initialize 'custom-initialize-default |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
111 :type 'boolean |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
112 :group 'partial-completion |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
113 :require 'complete) |
3725 | 114 |
18981
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
115 (defcustom PC-first-char 'find-file |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
116 "*Control how the first character of a string is to be interpreted. |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
117 If nil, the first character of a string is not taken literally if it is a word |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
118 delimiter, so that \".e\" matches \"*.e*\". |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
119 If t, the first character of a string is always taken literally even if it is a |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
120 word delimiter, so that \".e\" matches \".e*\". |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
121 If non-nil and non-t, the first character is taken literally only for file name |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
122 completion." |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
123 :type '(choice (const :tag "delimiter" nil) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
124 (const :tag "literal" t) |
22570
6cfe82c80677
(PC-first-char): Use `other' widget type.
Andreas Schwab <schwab@suse.de>
parents:
22250
diff
changeset
|
125 (other :tag "find-file" find-file)) |
18981
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
126 :group 'partial-completion) |
3725 | 127 |
18981
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
128 (defcustom PC-meta-flag t |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
129 "*If non-nil, TAB means PC completion and M-TAB means normal completion. |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
130 Otherwise, TAB means normal completion and M-TAB means Partial Completion." |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
131 :type 'boolean |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
132 :group 'partial-completion) |
3725 | 133 |
18981
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
134 (defcustom PC-word-delimiters "-_. " |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
135 "*A string of characters treated as word delimiters for completion. |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
136 Some arcane rules: |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
137 If `]' is in this string, it must come first. |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
138 If `^' is in this string, it must not come first. |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
139 If `-' is in this string, it must come first or right after `]'. |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
140 In other words, if S is this string, then `[S]' must be a legal Emacs regular |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
141 expression (not containing character ranges like `a-z')." |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
142 :type 'string |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
143 :group 'partial-completion) |
3725 | 144 |
18981
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
145 (defcustom PC-include-file-path '("/usr/include" "/usr/local/include") |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
146 "*A list of directories in which to look for include files. |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
147 If nil, means use the colon-separated path in the variable $INCPATH instead." |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
148 :type '(repeat directory) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
149 :group 'partial-completion) |
3725 | 150 |
18981
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
151 (defcustom PC-disable-includes nil |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
152 "*If non-nil, include-file support in \\[find-file] is disabled." |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
153 :type 'boolean |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
154 :group 'partial-completion) |
3725 | 155 |
156 (defvar PC-default-bindings t | |
18981
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
157 "If non-nil, default partial completion key bindings are suppressed.") |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
158 |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
159 (defvar PC-old-read-file-name-internal nil) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
160 |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
161 ;;;###autoload |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
162 (defun partial-completion-mode (&optional arg) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
163 "Toggle Partial Completion mode. |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
164 With prefix ARG, turn Partial Completion mode on if ARG is positive. |
3725 | 165 |
18981
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
166 When Partial Completion mode is enabled, TAB (or M-TAB if `PC-meta-flag' is |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
167 nil) is enhanced so that if some string is divided into words and each word is |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
168 delimited by a character in `PC-word-delimiters', partial words are completed |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
169 as much as possible. |
3725 | 170 |
24507
2a7aa9cd6a19
(partial-completion-mode): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
23009
diff
changeset
|
171 For example, M-x p-c-m expands to M-x partial-completion-mode since no other |
18981
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
172 command begins with that sequence of characters, and |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
173 \\[find-file] f_b.c TAB might complete to foo_bar.c if that file existed and no |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
174 other file in that directory begin with that sequence of characters. |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
175 |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
176 Unless `PC-disable-includes' is non-nil, the \"<...>\" sequence is interpreted |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
177 specially in \\[find-file]. For example, |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
178 \\[find-file] <sys/time.h> RET finds the file /usr/include/sys/time.h. |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
179 See also the variable `PC-include-file-path'." |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
180 (interactive "P") |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
181 (let ((on-p (if arg |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
182 (> (prefix-numeric-value arg) 0) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
183 (not partial-completion-mode)))) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
184 ;; Deal with key bindings... |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
185 (PC-bindings on-p) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
186 ;; Deal with include file feature... |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
187 (cond ((not on-p) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
188 (remove-hook 'find-file-not-found-hooks 'PC-look-for-include-file)) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
189 ((not PC-disable-includes) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
190 (add-hook 'find-file-not-found-hooks 'PC-look-for-include-file))) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
191 ;; ... with some underhand redefining. |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
192 (cond ((and (not on-p) (functionp PC-old-read-file-name-internal)) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
193 (fset 'read-file-name-internal PC-old-read-file-name-internal)) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
194 ((and (not PC-disable-includes) (not PC-old-read-file-name-internal)) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
195 (setq PC-old-read-file-name-internal |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
196 (symbol-function 'read-file-name-internal)) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
197 (fset 'read-file-name-internal |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
198 'PC-read-include-file-name-internal))) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
199 ;; Finally set the mode variable. |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
200 (setq partial-completion-mode on-p))) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
201 |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
202 (defun PC-bindings (bind) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
203 (let ((completion-map minibuffer-local-completion-map) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
204 (must-match-map minibuffer-local-must-match-map)) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
205 (cond ((not bind) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
206 ;; These bindings are the default bindings. It would be better to |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
207 ;; restore the previous bindings. |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
208 (define-key completion-map "\t" 'minibuffer-complete) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
209 (define-key completion-map " " 'minibuffer-complete-word) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
210 (define-key completion-map "?" 'minibuffer-completion-help) |
3725 | 211 |
18981
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
212 (define-key must-match-map "\t" 'minibuffer-complete) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
213 (define-key must-match-map " " 'minibuffer-complete-word) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
214 (define-key must-match-map "\r" 'minibuffer-complete-and-exit) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
215 (define-key must-match-map "\n" 'minibuffer-complete-and-exit) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
216 (define-key must-match-map "?" 'minibuffer-completion-help) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
217 |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
218 (define-key global-map "\e\t" 'complete-symbol)) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
219 (PC-default-bindings |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
220 (define-key completion-map "\t" 'PC-complete) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
221 (define-key completion-map " " 'PC-complete-word) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
222 (define-key completion-map "?" 'PC-completion-help) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
223 |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
224 (define-key completion-map "\e\t" 'PC-complete) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
225 (define-key completion-map "\e " 'PC-complete-word) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
226 (define-key completion-map "\e\r" 'PC-force-complete-and-exit) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
227 (define-key completion-map "\e\n" 'PC-force-complete-and-exit) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
228 (define-key completion-map "\e?" 'PC-completion-help) |
3725 | 229 |
18981
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
230 (define-key must-match-map "\t" 'PC-complete) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
231 (define-key must-match-map " " 'PC-complete-word) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
232 (define-key must-match-map "\r" 'PC-complete-and-exit) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
233 (define-key must-match-map "\n" 'PC-complete-and-exit) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
234 (define-key must-match-map "?" 'PC-completion-help) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
235 |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
236 (define-key must-match-map "\e\t" 'PC-complete) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
237 (define-key must-match-map "\e " 'PC-complete-word) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
238 (define-key must-match-map "\e\r" 'PC-complete-and-exit) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
239 (define-key must-match-map "\e\n" 'PC-complete-and-exit) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
240 (define-key must-match-map "\e?" 'PC-completion-help) |
3725 | 241 |
18981
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
242 (define-key global-map "\e\t" 'PC-lisp-complete-symbol))))) |
3725 | 243 |
18981
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
244 ;; Because the `partial-completion-mode' option is defined before the |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
245 ;; `partial-completion-mode' command and its callee, we give the former a |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
246 ;; default `:initialize' keyword value. Otherwise, the `:set' keyword value |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
247 ;; would be called to initialise the variable value, and that would call the |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
248 ;; as-yet undefined `partial-completion-mode' function. |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
249 ;; Since the default `:initialize' keyword value (obviously) does not turn on |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
250 ;; Partial Completion Mode, we do that here, once the `partial-completion-mode' |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
251 ;; function and its callee are defined. |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
252 (when partial-completion-mode |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
253 (partial-completion-mode t)) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
254 |
3725 | 255 (defun PC-complete () |
256 "Like minibuffer-complete, but allows \"b--di\"-style abbreviations. | |
257 For example, \"M-x b--di\" would match `byte-recompile-directory', or any | |
258 name which consists of three or more words, the first beginning with \"b\" | |
259 and the third beginning with \"di\". | |
260 | |
261 The pattern \"b--d\" is ambiguous for `byte-recompile-directory' and | |
262 `beginning-of-defun', so this would produce a list of completions | |
263 just like when normal Emacs completions are ambiguous. | |
264 | |
265 Word-delimiters for the purposes of Partial Completion are \"-\", \"_\", | |
266 \".\", and SPC." | |
267 (interactive) | |
268 (if (PC-was-meta-key) | |
269 (minibuffer-complete) | |
15802
1595df9ed1e8
(PC-complete): When command is repeated,
Richard M. Stallman <rms@gnu.org>
parents:
15261
diff
changeset
|
270 ;; If the previous command was not this one, |
1595df9ed1e8
(PC-complete): When command is repeated,
Richard M. Stallman <rms@gnu.org>
parents:
15261
diff
changeset
|
271 ;; never scroll, always retry completion. |
1595df9ed1e8
(PC-complete): When command is repeated,
Richard M. Stallman <rms@gnu.org>
parents:
15261
diff
changeset
|
272 (or (eq last-command this-command) |
1595df9ed1e8
(PC-complete): When command is repeated,
Richard M. Stallman <rms@gnu.org>
parents:
15261
diff
changeset
|
273 (setq minibuffer-scroll-window nil)) |
1595df9ed1e8
(PC-complete): When command is repeated,
Richard M. Stallman <rms@gnu.org>
parents:
15261
diff
changeset
|
274 (let ((window minibuffer-scroll-window)) |
1595df9ed1e8
(PC-complete): When command is repeated,
Richard M. Stallman <rms@gnu.org>
parents:
15261
diff
changeset
|
275 ;; If there's a fresh completion window with a live buffer, |
1595df9ed1e8
(PC-complete): When command is repeated,
Richard M. Stallman <rms@gnu.org>
parents:
15261
diff
changeset
|
276 ;; and this command is repeated, scroll that window. |
1595df9ed1e8
(PC-complete): When command is repeated,
Richard M. Stallman <rms@gnu.org>
parents:
15261
diff
changeset
|
277 (if (and window (window-buffer window) |
1595df9ed1e8
(PC-complete): When command is repeated,
Richard M. Stallman <rms@gnu.org>
parents:
15261
diff
changeset
|
278 (buffer-name (window-buffer window))) |
1595df9ed1e8
(PC-complete): When command is repeated,
Richard M. Stallman <rms@gnu.org>
parents:
15261
diff
changeset
|
279 (save-excursion |
1595df9ed1e8
(PC-complete): When command is repeated,
Richard M. Stallman <rms@gnu.org>
parents:
15261
diff
changeset
|
280 (set-buffer (window-buffer window)) |
1595df9ed1e8
(PC-complete): When command is repeated,
Richard M. Stallman <rms@gnu.org>
parents:
15261
diff
changeset
|
281 (if (pos-visible-in-window-p (point-max) window) |
1595df9ed1e8
(PC-complete): When command is repeated,
Richard M. Stallman <rms@gnu.org>
parents:
15261
diff
changeset
|
282 (set-window-start window (point-min) nil) |
1595df9ed1e8
(PC-complete): When command is repeated,
Richard M. Stallman <rms@gnu.org>
parents:
15261
diff
changeset
|
283 (scroll-other-window))) |
1595df9ed1e8
(PC-complete): When command is repeated,
Richard M. Stallman <rms@gnu.org>
parents:
15261
diff
changeset
|
284 (PC-do-completion nil))))) |
3725 | 285 |
286 | |
287 (defun PC-complete-word () | |
288 "Like `minibuffer-complete-word', but allows \"b--di\"-style abbreviations. | |
289 See `PC-complete' for details. | |
290 This can be bound to other keys, like `-' and `.', if you wish." | |
291 (interactive) | |
292 (if (eq (PC-was-meta-key) PC-meta-flag) | |
293 (if (eq last-command-char ? ) | |
294 (minibuffer-complete-word) | |
295 (self-insert-command 1)) | |
296 (self-insert-command 1) | |
297 (if (eobp) | |
298 (PC-do-completion 'word)))) | |
299 | |
300 | |
301 (defun PC-complete-space () | |
302 "Like `minibuffer-complete-word', but allows \"b--di\"-style abbreviations. | |
303 See `PC-complete' for details. | |
304 This is suitable for binding to other keys which should act just like SPC." | |
305 (interactive) | |
306 (if (eq (PC-was-meta-key) PC-meta-flag) | |
307 (minibuffer-complete-word) | |
308 (insert " ") | |
309 (if (eobp) | |
310 (PC-do-completion 'word)))) | |
311 | |
312 | |
313 (defun PC-complete-and-exit () | |
314 "Like `minibuffer-complete-and-exit', but allows \"b--di\"-style abbreviations. | |
315 See `PC-complete' for details." | |
316 (interactive) | |
317 (if (eq (PC-was-meta-key) PC-meta-flag) | |
318 (minibuffer-complete-and-exit) | |
319 (PC-do-complete-and-exit))) | |
320 | |
321 (defun PC-force-complete-and-exit () | |
322 "Like `minibuffer-complete-and-exit', but allows \"b--di\"-style abbreviations. | |
323 See `PC-complete' for details." | |
324 (interactive) | |
325 (let ((minibuffer-completion-confirm nil)) | |
326 (PC-do-complete-and-exit))) | |
327 | |
328 (defun PC-do-complete-and-exit () | |
329 (if (= (buffer-size) 0) ; Duplicate the "bug" that Info-menu relies on... | |
330 (exit-minibuffer) | |
331 (let ((flag (PC-do-completion 'exit))) | |
332 (and flag | |
333 (if (or (eq flag 'complete) | |
334 (not minibuffer-completion-confirm)) | |
335 (exit-minibuffer) | |
10164
d16e46a4e34c
(PC-do-completion): If complete but not unique,
Richard M. Stallman <rms@gnu.org>
parents:
8478
diff
changeset
|
336 (PC-temp-minibuffer-message " [Confirm]")))))) |
3725 | 337 |
338 | |
339 (defun PC-completion-help () | |
340 "Like `minibuffer-completion-help', but allows \"b--di\"-style abbreviations. | |
341 See `PC-complete' for details." | |
342 (interactive) | |
343 (if (eq (PC-was-meta-key) PC-meta-flag) | |
344 (minibuffer-completion-help) | |
345 (PC-do-completion 'help))) | |
346 | |
347 (defun PC-was-meta-key () | |
348 (or (/= (length (this-command-keys)) 1) | |
349 (let ((key (aref (this-command-keys) 0))) | |
350 (if (integerp key) | |
351 (>= key 128) | |
352 (not (null (memq 'meta (event-modifiers key)))))))) | |
353 | |
354 | |
355 (defvar PC-ignored-extensions 'empty-cache) | |
356 (defvar PC-delims 'empty-cache) | |
357 (defvar PC-ignored-regexp nil) | |
358 (defvar PC-word-failed-flag nil) | |
359 (defvar PC-delim-regex nil) | |
360 (defvar PC-ndelims-regex nil) | |
361 (defvar PC-delims-list nil) | |
362 | |
14765
844686eabff0
(PC-completion-as-file-name-predicate):
Richard M. Stallman <rms@gnu.org>
parents:
14759
diff
changeset
|
363 (defvar PC-completion-as-file-name-predicate |
844686eabff0
(PC-completion-as-file-name-predicate):
Richard M. Stallman <rms@gnu.org>
parents:
14759
diff
changeset
|
364 (function |
844686eabff0
(PC-completion-as-file-name-predicate):
Richard M. Stallman <rms@gnu.org>
parents:
14759
diff
changeset
|
365 (lambda () |
844686eabff0
(PC-completion-as-file-name-predicate):
Richard M. Stallman <rms@gnu.org>
parents:
14759
diff
changeset
|
366 (memq minibuffer-completion-table |
844686eabff0
(PC-completion-as-file-name-predicate):
Richard M. Stallman <rms@gnu.org>
parents:
14759
diff
changeset
|
367 '(read-file-name-internal read-directory-name-internal)))) |
844686eabff0
(PC-completion-as-file-name-predicate):
Richard M. Stallman <rms@gnu.org>
parents:
14759
diff
changeset
|
368 "A function testing whether a minibuffer completion now will work filename-style. |
844686eabff0
(PC-completion-as-file-name-predicate):
Richard M. Stallman <rms@gnu.org>
parents:
14759
diff
changeset
|
369 The function takes no arguments, and typically looks at the value |
844686eabff0
(PC-completion-as-file-name-predicate):
Richard M. Stallman <rms@gnu.org>
parents:
14759
diff
changeset
|
370 of `minibuffer-completion-table' and the minibuffer contents.") |
14759
f93ed65c0584
(PC-do-completion-filename-completers): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
371 |
3725 | 372 (defun PC-do-completion (&optional mode beg end) |
373 (or beg (setq beg (point-min))) | |
374 (or end (setq end (point-max))) | |
375 (let* ((table minibuffer-completion-table) | |
376 (pred minibuffer-completion-predicate) | |
14765
844686eabff0
(PC-completion-as-file-name-predicate):
Richard M. Stallman <rms@gnu.org>
parents:
14759
diff
changeset
|
377 (filename (funcall PC-completion-as-file-name-predicate)) |
3725 | 378 (dirname nil) |
8478
9d3d84a3c3fa
(PC-do-completion): Set completion-base-size.
Richard M. Stallman <rms@gnu.org>
parents:
7942
diff
changeset
|
379 dirlength |
3725 | 380 (str (buffer-substring beg end)) |
381 (incname (and filename (string-match "<\\([^\"<>]*\\)>?$" str))) | |
382 (ambig nil) | |
383 basestr | |
384 regex | |
385 p offset | |
386 (poss nil) | |
387 helpposs | |
388 (case-fold-search completion-ignore-case)) | |
389 | |
390 ;; Check if buffer contents can already be considered complete | |
391 (if (and (eq mode 'exit) | |
392 (PC-is-complete-p str table pred)) | |
393 'complete | |
394 | |
8478
9d3d84a3c3fa
(PC-do-completion): Set completion-base-size.
Richard M. Stallman <rms@gnu.org>
parents:
7942
diff
changeset
|
395 ;; Record how many characters at the beginning are not included |
9d3d84a3c3fa
(PC-do-completion): Set completion-base-size.
Richard M. Stallman <rms@gnu.org>
parents:
7942
diff
changeset
|
396 ;; in completion. |
9d3d84a3c3fa
(PC-do-completion): Set completion-base-size.
Richard M. Stallman <rms@gnu.org>
parents:
7942
diff
changeset
|
397 (setq dirlength |
9d3d84a3c3fa
(PC-do-completion): Set completion-base-size.
Richard M. Stallman <rms@gnu.org>
parents:
7942
diff
changeset
|
398 (if filename |
9d3d84a3c3fa
(PC-do-completion): Set completion-base-size.
Richard M. Stallman <rms@gnu.org>
parents:
7942
diff
changeset
|
399 (length (file-name-directory str)) |
9d3d84a3c3fa
(PC-do-completion): Set completion-base-size.
Richard M. Stallman <rms@gnu.org>
parents:
7942
diff
changeset
|
400 0)) |
9d3d84a3c3fa
(PC-do-completion): Set completion-base-size.
Richard M. Stallman <rms@gnu.org>
parents:
7942
diff
changeset
|
401 |
3725 | 402 ;; Do substitutions in directory names |
403 (and filename | |
404 (not (equal str (setq p (substitute-in-file-name str)))) | |
405 (progn | |
406 (delete-region beg end) | |
407 (insert p) | |
408 (setq str p end (+ beg (length str))))) | |
409 | |
410 ;; Prepare various delimiter strings | |
411 (or (equal PC-word-delimiters PC-delims) | |
412 (setq PC-delims PC-word-delimiters | |
413 PC-delim-regex (concat "[" PC-delims "]") | |
414 PC-ndelims-regex (concat "[^" PC-delims "]*") | |
415 PC-delims-list (append PC-delims nil))) | |
416 | |
417 ;; Look for wildcard expansions in directory name | |
418 (and filename | |
419 (string-match "\\*.*/" str) | |
420 (let ((pat str) | |
421 files) | |
422 (setq p (1+ (string-match "/[^/]*\\'" pat))) | |
423 (while (setq p (string-match PC-delim-regex pat p)) | |
424 (setq pat (concat (substring pat 0 p) | |
425 "*" | |
426 (substring pat p)) | |
427 p (+ p 2))) | |
428 (setq files (PC-expand-many-files (concat pat "*"))) | |
429 (if files | |
430 (let ((dir (file-name-directory (car files))) | |
431 (p files)) | |
432 (while (and (setq p (cdr p)) | |
433 (equal dir (file-name-directory (car p))))) | |
434 (if p | |
435 (setq filename nil table nil pred nil | |
436 ambig t) | |
437 (delete-region beg end) | |
438 (setq str (concat dir (file-name-nondirectory str))) | |
439 (insert str) | |
440 (setq end (+ beg (length str))))) | |
441 (setq filename nil table nil pred nil)))) | |
442 | |
443 ;; Strip directory name if appropriate | |
444 (if filename | |
445 (if incname | |
446 (setq basestr (substring str incname) | |
447 dirname (substring str 0 incname)) | |
448 (setq basestr (file-name-nondirectory str) | |
449 dirname (file-name-directory str))) | |
450 (setq basestr str)) | |
451 | |
452 ;; Convert search pattern to a standard regular expression | |
453 (setq regex (regexp-quote basestr) | |
454 offset (if (and (> (length regex) 0) | |
455 (not (eq (aref basestr 0) ?\*)) | |
456 (or (eq PC-first-char t) | |
457 (and PC-first-char filename))) 1 0) | |
458 p offset) | |
459 (while (setq p (string-match PC-delim-regex regex p)) | |
460 (if (eq (aref regex p) ? ) | |
461 (setq regex (concat (substring regex 0 p) | |
462 PC-ndelims-regex | |
463 PC-delim-regex | |
464 (substring regex (1+ p))) | |
465 p (+ p (length PC-ndelims-regex) (length PC-delim-regex))) | |
466 (let ((bump (if (memq (aref regex p) | |
467 '(?$ ?^ ?\. ?* ?+ ?? ?[ ?] ?\\)) | |
468 -1 0))) | |
469 (setq regex (concat (substring regex 0 (+ p bump)) | |
470 PC-ndelims-regex | |
471 (substring regex (+ p bump))) | |
472 p (+ p (length PC-ndelims-regex) 1))))) | |
473 (setq p 0) | |
474 (if filename | |
475 (while (setq p (string-match "\\\\\\*" regex p)) | |
476 (setq regex (concat (substring regex 0 p) | |
477 "[^/]*" | |
478 (substring regex (+ p 2)))))) | |
479 ;;(setq the-regex regex) | |
480 (setq regex (concat "\\`" regex)) | |
481 | |
482 ;; Find an initial list of possible completions | |
483 (if (not (setq p (string-match (concat PC-delim-regex | |
484 (if filename "\\|\\*" "")) | |
485 str | |
486 (+ (length dirname) offset)))) | |
487 | |
488 ;; Minibuffer contains no hyphens -- simple case! | |
489 (setq poss (all-completions str | |
490 table | |
491 pred)) | |
492 | |
493 ;; Use all-completions to do an initial cull. This is a big win, | |
494 ;; since all-completions is written in C! | |
495 (let ((compl (all-completions (substring str 0 p) | |
496 table | |
497 pred))) | |
498 (setq p compl) | |
499 (while p | |
500 (and (string-match regex (car p)) | |
16608
e2858bcbed43
(PC-do-completion): Remove text properties from
Karl Heuer <kwzh@gnu.org>
parents:
15802
diff
changeset
|
501 (progn |
e2858bcbed43
(PC-do-completion): Remove text properties from
Karl Heuer <kwzh@gnu.org>
parents:
15802
diff
changeset
|
502 (set-text-properties 0 (length (car p)) '() (car p)) |
e2858bcbed43
(PC-do-completion): Remove text properties from
Karl Heuer <kwzh@gnu.org>
parents:
15802
diff
changeset
|
503 (setq poss (cons (car p) poss)))) |
3725 | 504 (setq p (cdr p))))) |
505 | |
506 ;; Now we have a list of possible completions | |
507 (cond | |
508 | |
509 ;; No valid completions found | |
510 ((null poss) | |
511 (if (and (eq mode 'word) | |
512 (not PC-word-failed-flag)) | |
513 (let ((PC-word-failed-flag t)) | |
514 (delete-backward-char 1) | |
515 (PC-do-completion 'word)) | |
516 (beep) | |
517 (PC-temp-minibuffer-message (if ambig | |
10164
d16e46a4e34c
(PC-do-completion): If complete but not unique,
Richard M. Stallman <rms@gnu.org>
parents:
8478
diff
changeset
|
518 " [Ambiguous dir name]" |
3725 | 519 (if (eq mode 'help) |
10164
d16e46a4e34c
(PC-do-completion): If complete but not unique,
Richard M. Stallman <rms@gnu.org>
parents:
8478
diff
changeset
|
520 " [No completions]" |
d16e46a4e34c
(PC-do-completion): If complete but not unique,
Richard M. Stallman <rms@gnu.org>
parents:
8478
diff
changeset
|
521 " [No match]"))) |
3725 | 522 nil)) |
523 | |
524 ;; More than one valid completion found | |
525 ((or (cdr (setq helpposs poss)) | |
526 (memq mode '(help word))) | |
527 | |
528 ;; Handle completion-ignored-extensions | |
529 (and filename | |
530 (not (eq mode 'help)) | |
531 (let ((p2 poss)) | |
532 | |
533 ;; Build a regular expression representing the extensions list | |
534 (or (equal completion-ignored-extensions PC-ignored-extensions) | |
535 (setq PC-ignored-regexp | |
536 (concat "\\(" | |
537 (mapconcat | |
538 'regexp-quote | |
539 (setq PC-ignored-extensions | |
540 completion-ignored-extensions) | |
541 "\\|") | |
542 "\\)\\'"))) | |
543 | |
23009
9ffaa505edc7
(PC-do-completion): Exclude ./ and ../ from completion.
Richard M. Stallman <rms@gnu.org>
parents:
22570
diff
changeset
|
544 ;; Check if there are any without an ignored extension. |
9ffaa505edc7
(PC-do-completion): Exclude ./ and ../ from completion.
Richard M. Stallman <rms@gnu.org>
parents:
22570
diff
changeset
|
545 ;; Also ignore `.' and `..'. |
3725 | 546 (setq p nil) |
547 (while p2 | |
548 (or (string-match PC-ignored-regexp (car p2)) | |
23009
9ffaa505edc7
(PC-do-completion): Exclude ./ and ../ from completion.
Richard M. Stallman <rms@gnu.org>
parents:
22570
diff
changeset
|
549 (string-match "\\(\\`\\|/\\)[.][.]?/?\\'" (car p2)) |
3725 | 550 (setq p (cons (car p2) p))) |
551 (setq p2 (cdr p2))) | |
552 | |
553 ;; If there are "good" names, use them | |
554 (and p (setq poss p)))) | |
555 | |
556 ;; Is the actual string one of the possible completions? | |
557 (setq p (and (not (eq mode 'help)) poss)) | |
558 (while (and p | |
16608
e2858bcbed43
(PC-do-completion): Remove text properties from
Karl Heuer <kwzh@gnu.org>
parents:
15802
diff
changeset
|
559 (not (string-equal (car p) basestr))) |
3725 | 560 (setq p (cdr p))) |
10164
d16e46a4e34c
(PC-do-completion): If complete but not unique,
Richard M. Stallman <rms@gnu.org>
parents:
8478
diff
changeset
|
561 (and p (null mode) |
d16e46a4e34c
(PC-do-completion): If complete but not unique,
Richard M. Stallman <rms@gnu.org>
parents:
8478
diff
changeset
|
562 (PC-temp-minibuffer-message " [Complete, but not unique]")) |
d16e46a4e34c
(PC-do-completion): If complete but not unique,
Richard M. Stallman <rms@gnu.org>
parents:
8478
diff
changeset
|
563 (if (and p |
d16e46a4e34c
(PC-do-completion): If complete but not unique,
Richard M. Stallman <rms@gnu.org>
parents:
8478
diff
changeset
|
564 (not (and (null mode) |
d16e46a4e34c
(PC-do-completion): If complete but not unique,
Richard M. Stallman <rms@gnu.org>
parents:
8478
diff
changeset
|
565 (eq this-command last-command)))) |
d16e46a4e34c
(PC-do-completion): If complete but not unique,
Richard M. Stallman <rms@gnu.org>
parents:
8478
diff
changeset
|
566 t |
3725 | 567 |
568 ;; If ambiguous, try for a partial completion | |
569 (let ((improved nil) | |
570 prefix | |
571 (pt nil) | |
572 (skip "\\`")) | |
573 | |
574 ;; Check if next few letters are the same in all cases | |
575 (if (and (not (eq mode 'help)) | |
576 (setq prefix (try-completion "" (mapcar 'list poss)))) | |
577 (let ((first t) i) | |
578 (if (eq mode 'word) | |
579 (setq prefix (PC-chop-word prefix basestr))) | |
580 (goto-char (+ beg (length dirname))) | |
581 (while (and (progn | |
582 (setq i 0) | |
583 (while (< i (length prefix)) | |
584 (if (and (< (point) end) | |
585 (eq (aref prefix i) | |
586 (following-char))) | |
587 (forward-char 1) | |
588 (if (and (< (point) end) | |
589 (or (and (looking-at " ") | |
590 (memq (aref prefix i) | |
591 PC-delims-list)) | |
592 (eq (downcase (aref prefix i)) | |
593 (downcase | |
594 (following-char))))) | |
595 (progn | |
596 (delete-char 1) | |
597 (setq end (1- end))) | |
598 (and filename (looking-at "\\*") | |
599 (progn | |
600 (delete-char 1) | |
601 (setq end (1- end)))) | |
602 (setq improved t)) | |
16608
e2858bcbed43
(PC-do-completion): Remove text properties from
Karl Heuer <kwzh@gnu.org>
parents:
15802
diff
changeset
|
603 (insert (substring prefix i (1+ i))) |
3725 | 604 (setq end (1+ end))) |
605 (setq i (1+ i))) | |
606 (or pt (equal (point) beg) | |
607 (setq pt (point))) | |
608 (looking-at PC-delim-regex)) | |
609 (setq skip (concat skip | |
610 (regexp-quote prefix) | |
611 PC-ndelims-regex) | |
612 prefix (try-completion | |
613 "" | |
614 (mapcar | |
615 (function | |
616 (lambda (x) | |
617 (list | |
618 (and (string-match skip x) | |
619 (substring | |
620 x | |
621 (match-end 0)))))) | |
622 poss))) | |
623 (or (> i 0) (> (length prefix) 0)) | |
624 (or (not (eq mode 'word)) | |
625 (and first (> (length prefix) 0) | |
626 (setq first nil | |
627 prefix (substring prefix 0 1)))))) | |
628 (goto-char (if (eq mode 'word) end | |
629 (or pt beg))))) | |
630 | |
631 (if (and (eq mode 'word) | |
632 (not PC-word-failed-flag)) | |
633 | |
634 (if improved | |
635 | |
636 ;; We changed it... would it be complete without the space? | |
637 (if (PC-is-complete-p (buffer-substring 1 (1- end)) | |
638 table pred) | |
639 (delete-region (1- end) end))) | |
640 | |
641 (if improved | |
642 | |
643 ;; We changed it... enough to be complete? | |
644 (and (eq mode 'exit) | |
645 (PC-is-complete-p (buffer-string) table pred)) | |
646 | |
647 ;; If totally ambiguous, display a list of completions | |
648 (if (or completion-auto-help | |
649 (eq mode 'help)) | |
7844
86402e8c677b
(PC-do-completion): Likewise.
Richard M. Stallman <rms@gnu.org>
parents:
7792
diff
changeset
|
650 (with-output-to-temp-buffer "*Completions*" |
8478
9d3d84a3c3fa
(PC-do-completion): Set completion-base-size.
Richard M. Stallman <rms@gnu.org>
parents:
7942
diff
changeset
|
651 (display-completion-list (sort helpposs 'string-lessp)) |
9d3d84a3c3fa
(PC-do-completion): Set completion-base-size.
Richard M. Stallman <rms@gnu.org>
parents:
7942
diff
changeset
|
652 (save-excursion |
9d3d84a3c3fa
(PC-do-completion): Set completion-base-size.
Richard M. Stallman <rms@gnu.org>
parents:
7942
diff
changeset
|
653 (set-buffer standard-output) |
9d3d84a3c3fa
(PC-do-completion): Set completion-base-size.
Richard M. Stallman <rms@gnu.org>
parents:
7942
diff
changeset
|
654 ;; Record which part of the buffer we are completing |
9d3d84a3c3fa
(PC-do-completion): Set completion-base-size.
Richard M. Stallman <rms@gnu.org>
parents:
7942
diff
changeset
|
655 ;; so that choosing a completion from the list |
9d3d84a3c3fa
(PC-do-completion): Set completion-base-size.
Richard M. Stallman <rms@gnu.org>
parents:
7942
diff
changeset
|
656 ;; knows how much old text to replace. |
9d3d84a3c3fa
(PC-do-completion): Set completion-base-size.
Richard M. Stallman <rms@gnu.org>
parents:
7942
diff
changeset
|
657 (setq completion-base-size dirlength))) |
10164
d16e46a4e34c
(PC-do-completion): If complete but not unique,
Richard M. Stallman <rms@gnu.org>
parents:
8478
diff
changeset
|
658 (PC-temp-minibuffer-message " [Next char not unique]")) |
3725 | 659 nil))))) |
660 | |
661 ;; Only one possible completion | |
662 (t | |
663 (if (equal basestr (car poss)) | |
664 (if (null mode) | |
10164
d16e46a4e34c
(PC-do-completion): If complete but not unique,
Richard M. Stallman <rms@gnu.org>
parents:
8478
diff
changeset
|
665 (PC-temp-minibuffer-message " [Sole completion]")) |
3725 | 666 (delete-region beg end) |
7792
1335cec8a016
(PC-do-completion): Clear text props from inserted text.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
667 (insert (format "%s" |
1335cec8a016
(PC-do-completion): Clear text props from inserted text.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
668 (if filename |
1335cec8a016
(PC-do-completion): Clear text props from inserted text.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
669 (substitute-in-file-name (concat dirname (car poss))) |
1335cec8a016
(PC-do-completion): Clear text props from inserted text.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
670 (car poss))))) |
3725 | 671 t))))) |
672 | |
673 | |
674 (defun PC-is-complete-p (str table pred) | |
675 (let ((res (if (listp table) | |
676 (assoc str table) | |
677 (if (vectorp table) | |
678 (or (equal str "nil") ; heh, heh, heh | |
679 (intern-soft str table)) | |
680 (funcall table str pred 'lambda))))) | |
681 (and res | |
682 (or (not pred) | |
683 (and (not (listp table)) (not (vectorp table))) | |
684 (funcall pred res)) | |
685 res))) | |
686 | |
687 (defun PC-chop-word (new old) | |
688 (let ((i -1) | |
689 (j -1)) | |
690 (while (and (setq i (string-match PC-delim-regex old (1+ i))) | |
691 (setq j (string-match PC-delim-regex new (1+ j))))) | |
692 (if (and j | |
693 (or (not PC-word-failed-flag) | |
694 (setq j (string-match PC-delim-regex new (1+ j))))) | |
695 (substring new 0 (1+ j)) | |
696 new))) | |
697 | |
698 (defvar PC-not-minibuffer nil) | |
699 | |
18981
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
700 (defun PC-temp-minibuffer-message (message) |
3725 | 701 "A Lisp version of `temp_minibuffer_message' from minibuf.c." |
18981
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
702 (cond (PC-not-minibuffer |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
703 (message message) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
704 (sit-for 2) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
705 (message "")) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
706 ((fboundp 'temp-minibuffer-message) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
707 (temp-minibuffer-message message)) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
708 (t |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
709 (let ((point-max (point-max))) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
710 (save-excursion |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
711 (goto-char point-max) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
712 (insert message)) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
713 (let ((inhibit-quit t)) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
714 (sit-for 2) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
715 (delete-region point-max (point-max)) |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
716 (when quit-flag |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
717 (setq quit-flag nil |
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
718 unread-command-events '(7)))))))) |
3725 | 719 |
720 | |
721 (defun PC-lisp-complete-symbol () | |
722 "Perform completion on Lisp symbol preceding point. | |
723 That symbol is compared against the symbols that exist | |
724 and any additional characters determined by what is there | |
725 are inserted. | |
726 If the symbol starts just after an open-parenthesis, | |
727 only symbols with function definitions are considered. | |
728 Otherwise, all symbols with function definitions, values | |
729 or properties are considered." | |
730 (interactive) | |
731 (let* ((end (point)) | |
732 (buffer-syntax (syntax-table)) | |
733 (beg (unwind-protect | |
734 (save-excursion | |
735 (if lisp-mode-syntax-table | |
736 (set-syntax-table lisp-mode-syntax-table)) | |
737 (backward-sexp 1) | |
738 (while (= (char-syntax (following-char)) ?\') | |
739 (forward-char 1)) | |
740 (point)) | |
741 (set-syntax-table buffer-syntax))) | |
742 (minibuffer-completion-table obarray) | |
743 (minibuffer-completion-predicate | |
744 (if (eq (char-after (1- beg)) ?\() | |
745 'fboundp | |
746 (function (lambda (sym) | |
747 (or (boundp sym) (fboundp sym) | |
748 (symbol-plist sym)))))) | |
749 (PC-not-minibuffer t)) | |
750 (PC-do-completion nil beg end))) | |
751 | |
24624
07ae57ea2a18
Delete the wildcard expansion feature
Karl Heuer <kwzh@gnu.org>
parents:
24534
diff
changeset
|
752 ;;; Use the shell to do globbing. |
07ae57ea2a18
Delete the wildcard expansion feature
Karl Heuer <kwzh@gnu.org>
parents:
24534
diff
changeset
|
753 ;;; This could now use file-expand-wildcards instead. |
3725 | 754 |
755 (defun PC-expand-many-files (name) | |
756 (save-excursion | |
757 (set-buffer (generate-new-buffer " *Glob Output*")) | |
758 (erase-buffer) | |
759 (shell-command (concat "echo " name) t) | |
760 (goto-char (point-min)) | |
761 (if (looking-at ".*No match") | |
762 nil | |
763 (insert "(\"") | |
764 (while (search-forward " " nil t) | |
765 (delete-backward-char 1) | |
766 (insert "\" \"")) | |
767 (goto-char (point-max)) | |
768 (delete-backward-char 1) | |
769 (insert "\")") | |
770 (goto-char (point-min)) | |
21266
af9641af8877
(PC-expand-many-files): Apply completion-ignored-extensions.
Karl Heuer <kwzh@gnu.org>
parents:
20709
diff
changeset
|
771 (let ((files (read (current-buffer))) (p nil)) |
3725 | 772 (kill-buffer (current-buffer)) |
21266
af9641af8877
(PC-expand-many-files): Apply completion-ignored-extensions.
Karl Heuer <kwzh@gnu.org>
parents:
20709
diff
changeset
|
773 (or (equal completion-ignored-extensions PC-ignored-extensions) |
af9641af8877
(PC-expand-many-files): Apply completion-ignored-extensions.
Karl Heuer <kwzh@gnu.org>
parents:
20709
diff
changeset
|
774 (setq PC-ignored-regexp |
af9641af8877
(PC-expand-many-files): Apply completion-ignored-extensions.
Karl Heuer <kwzh@gnu.org>
parents:
20709
diff
changeset
|
775 (concat "\\(" |
af9641af8877
(PC-expand-many-files): Apply completion-ignored-extensions.
Karl Heuer <kwzh@gnu.org>
parents:
20709
diff
changeset
|
776 (mapconcat |
af9641af8877
(PC-expand-many-files): Apply completion-ignored-extensions.
Karl Heuer <kwzh@gnu.org>
parents:
20709
diff
changeset
|
777 'regexp-quote |
af9641af8877
(PC-expand-many-files): Apply completion-ignored-extensions.
Karl Heuer <kwzh@gnu.org>
parents:
20709
diff
changeset
|
778 (setq PC-ignored-extensions |
af9641af8877
(PC-expand-many-files): Apply completion-ignored-extensions.
Karl Heuer <kwzh@gnu.org>
parents:
20709
diff
changeset
|
779 completion-ignored-extensions) |
af9641af8877
(PC-expand-many-files): Apply completion-ignored-extensions.
Karl Heuer <kwzh@gnu.org>
parents:
20709
diff
changeset
|
780 "\\|") |
af9641af8877
(PC-expand-many-files): Apply completion-ignored-extensions.
Karl Heuer <kwzh@gnu.org>
parents:
20709
diff
changeset
|
781 "\\)\\'"))) |
af9641af8877
(PC-expand-many-files): Apply completion-ignored-extensions.
Karl Heuer <kwzh@gnu.org>
parents:
20709
diff
changeset
|
782 (setq p nil) |
af9641af8877
(PC-expand-many-files): Apply completion-ignored-extensions.
Karl Heuer <kwzh@gnu.org>
parents:
20709
diff
changeset
|
783 (while files |
af9641af8877
(PC-expand-many-files): Apply completion-ignored-extensions.
Karl Heuer <kwzh@gnu.org>
parents:
20709
diff
changeset
|
784 (or (string-match PC-ignored-regexp (car files)) |
af9641af8877
(PC-expand-many-files): Apply completion-ignored-extensions.
Karl Heuer <kwzh@gnu.org>
parents:
20709
diff
changeset
|
785 (setq p (cons (car files) p))) |
af9641af8877
(PC-expand-many-files): Apply completion-ignored-extensions.
Karl Heuer <kwzh@gnu.org>
parents:
20709
diff
changeset
|
786 (setq files (cdr files))) |
af9641af8877
(PC-expand-many-files): Apply completion-ignored-extensions.
Karl Heuer <kwzh@gnu.org>
parents:
20709
diff
changeset
|
787 p)))) |
3725 | 788 |
789 ;;; Facilities for loading C header files. This is independent from the | |
790 ;;; main completion code. See also the variable `PC-include-file-path' | |
791 ;;; at top of this file. | |
792 | |
793 (defun PC-look-for-include-file () | |
794 (if (string-match "[\"<]\\([^\"<>]*\\)[\">]?$" (buffer-file-name)) | |
795 (let ((name (substring (buffer-file-name) | |
796 (match-beginning 1) (match-end 1))) | |
797 (punc (aref (buffer-file-name) (match-beginning 0))) | |
798 (path nil) | |
799 new-buf) | |
800 (kill-buffer (current-buffer)) | |
801 (if (equal name "") | |
802 (save-excursion | |
803 (set-buffer (car (buffer-list))) | |
804 (save-excursion | |
805 (beginning-of-line) | |
806 (if (looking-at | |
807 "[ \t]*#[ \t]*include[ \t]+[<\"]\\(.+\\)[>\"][ \t]*[\n/]") | |
808 (setq name (buffer-substring (match-beginning 1) | |
809 (match-end 1)) | |
810 punc (char-after (1- (match-beginning 1)))) | |
811 ;; Suggested by Frank Siebenlist: | |
812 (if (or (looking-at | |
813 "[ \t]*([ \t]*load[ \t]+\"\\([^\"]+\\)\"") | |
814 (looking-at | |
815 "[ \t]*([ \t]*load-library[ \t]+\"\\([^\"]+\\)\"") | |
816 (looking-at | |
817 "[ \t]*([ \t]*require[ \t]+'\\([^\t )]+\\)[\t )]")) | |
818 (progn | |
819 (setq name (buffer-substring (match-beginning 1) | |
820 (match-end 1)) | |
821 punc ?\< | |
822 path load-path) | |
823 (if (string-match "\\.elc$" name) | |
824 (setq name (substring name 0 -1)) | |
825 (or (string-match "\\.el$" name) | |
826 (setq name (concat name ".el"))))) | |
827 (error "Not on an #include line")))))) | |
828 (or (string-match "\\.[a-zA-Z0-9]+$" name) | |
829 (setq name (concat name ".h"))) | |
830 (if (eq punc ?\<) | |
831 (let ((path (or path (PC-include-file-path)))) | |
832 (while (and path | |
833 (not (file-exists-p | |
834 (concat (file-name-as-directory (car path)) | |
835 name)))) | |
836 (setq path (cdr path))) | |
837 (if path | |
838 (setq name (concat (file-name-as-directory (car path)) name)) | |
839 (error "No such include file: <%s>" name))) | |
840 (let ((dir (save-excursion | |
841 (set-buffer (car (buffer-list))) | |
842 default-directory))) | |
843 (if (file-exists-p (concat dir name)) | |
844 (setq name (concat dir name)) | |
24624
07ae57ea2a18
Delete the wildcard expansion feature
Karl Heuer <kwzh@gnu.org>
parents:
24534
diff
changeset
|
845 (error "No such include file: `%s'" name)))) |
3725 | 846 (setq new-buf (get-file-buffer name)) |
847 (if new-buf | |
848 ;; no need to verify last-modified time for this! | |
849 (set-buffer new-buf) | |
850 (setq new-buf (create-file-buffer name)) | |
851 (set-buffer new-buf) | |
852 (erase-buffer) | |
853 (insert-file-contents name t)) | |
24624
07ae57ea2a18
Delete the wildcard expansion feature
Karl Heuer <kwzh@gnu.org>
parents:
24534
diff
changeset
|
854 ;; Returning non-nil with the new buffer current |
07ae57ea2a18
Delete the wildcard expansion feature
Karl Heuer <kwzh@gnu.org>
parents:
24534
diff
changeset
|
855 ;; is sufficient to tell find-file to use it. |
3725 | 856 t) |
857 nil)) | |
858 | |
859 (defun PC-include-file-path () | |
860 (or PC-include-file-path | |
861 (let ((env (getenv "INCPATH")) | |
862 (path nil) | |
863 pos) | |
864 (or env (error "No include file path specified")) | |
865 (while (setq pos (string-match ":[^:]+$" env)) | |
866 (setq path (cons (substring env (1+ pos)) path) | |
867 env (substring env 0 pos))) | |
868 path))) | |
869 | |
870 ;;; This is adapted from lib-complete.el, by Mike Williams. | |
871 (defun PC-include-file-all-completions (file search-path &optional full) | |
872 "Return all completions for FILE in any directory on SEARCH-PATH. | |
873 If optional third argument FULL is non-nil, returned pathnames should be | |
874 absolute rather than relative to some directory on the SEARCH-PATH." | |
875 (setq search-path | |
876 (mapcar '(lambda (dir) | |
877 (if dir (file-name-as-directory dir) default-directory)) | |
878 search-path)) | |
879 (if (file-name-absolute-p file) | |
880 ;; It's an absolute file name, so don't need search-path | |
881 (progn | |
882 (setq file (expand-file-name file)) | |
883 (file-name-all-completions | |
884 (file-name-nondirectory file) (file-name-directory file))) | |
885 (let ((subdir (file-name-directory file)) | |
886 (ndfile (file-name-nondirectory file)) | |
887 file-lists) | |
888 ;; Append subdirectory part to each element of search-path | |
889 (if subdir | |
890 (setq search-path | |
891 (mapcar '(lambda (dir) (concat dir subdir)) | |
892 search-path) | |
893 file )) | |
894 ;; Make list of completions in each directory on search-path | |
895 (while search-path | |
896 (let* ((dir (car search-path)) | |
897 (subdir (if full dir subdir))) | |
898 (if (file-directory-p dir) | |
899 (progn | |
900 (setq file-lists | |
901 (cons | |
902 (mapcar '(lambda (file) (concat subdir file)) | |
903 (file-name-all-completions ndfile | |
904 (car search-path))) | |
905 file-lists)))) | |
906 (setq search-path (cdr search-path)))) | |
907 ;; Compress out duplicates while building complete list (slloooow!) | |
908 (let ((sorted (sort (apply 'nconc file-lists) | |
909 '(lambda (x y) (not (string-lessp x y))))) | |
910 compressed) | |
911 (while sorted | |
912 (if (equal (car sorted) (car compressed)) nil | |
913 (setq compressed (cons (car sorted) compressed))) | |
914 (setq sorted (cdr sorted))) | |
915 compressed)))) | |
916 | |
917 (defun PC-read-include-file-name-internal (string dir action) | |
918 (if (string-match "<\\([^\"<>]*\\)>?$" string) | |
919 (let* ((name (substring string (match-beginning 1) (match-end 1))) | |
920 (str2 (substring string (match-beginning 0))) | |
921 (completion-table | |
922 (mapcar (function (lambda (x) (list (format "<%s>" x)))) | |
923 (PC-include-file-all-completions | |
924 name (PC-include-file-path))))) | |
925 (cond | |
926 ((not completion-table) nil) | |
927 ((eq action nil) (try-completion str2 completion-table nil)) | |
928 ((eq action t) (all-completions str2 completion-table nil)) | |
929 ((eq action 'lambda) | |
930 (eq (try-completion str2 completion-table nil) t)))) | |
931 (funcall PC-old-read-file-name-internal string dir action))) | |
18981
6681f7141d2b
customise & make installation/deinstallation happen on mode command not file load.
Simon Marshall <simon@gnu.org>
parents:
17352
diff
changeset
|
932 |
3725 | 933 |
934 (provide 'complete) | |
935 | |
936 ;;; End. |