Shrink EIEIO object header. Move generics to eieio-generic.el.
[emacs.git] / lisp / hippie-exp.el
blobb167671ab0b1e7ea303f6759730707f581e79bd2
1 ;;; hippie-exp.el --- expand text trying various ways to find its expansion
3 ;; Copyright (C) 1992, 2001-2015 Free Software Foundation, Inc.
5 ;; Author: Anders Holst <aho@sans.kth.se>
6 ;; Maintainer: emacs-devel@gnu.org
7 ;; Version: 1.6
8 ;; Keywords: abbrev convenience
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;; Commentary:
27 ;; `hippie-expand' is a single function for a lot of different kinds
28 ;; of completions and expansions. Called repeatedly it tries all
29 ;; possible completions in succession.
30 ;; Which kinds of completions to try, and in which order, is
31 ;; determined by the contents of `hippie-expand-try-functions-list'.
32 ;; Much customization of `hippie-expand' can be made by changing the
33 ;; order of, removing, or inserting new functions in this list.
34 ;; Given a positive numeric argument, `hippie-expand' jumps directly
35 ;; ARG functions forward in this list. Given some other argument
36 ;; (a negative argument or just Ctrl-U) it undoes the tried
37 ;; completion.
39 ;; If the variable `hippie-expand-verbose' is non-nil, `hippie-expand'
40 ;; outputs in a message which try-function in the list that is used
41 ;; currently (ie. was used currently and will be tried first the next
42 ;; time).
43 ;; The variable `hippie-expand-max-buffers' determines in how many
44 ;; buffers, apart from the current, to search for expansions in. It
45 ;; is used by the try-functions named "-all-buffers".
46 ;; The variable `hippie-expand-ignore-buffers' is a list of regexps
47 ;; matching buffer names (as strings) or major modes (as atoms) of
48 ;; buffers that should not be searched by the try-functions named
49 ;; "-all-buffers".
50 ;; If set, the variable `hippie-expand-only-buffers' does the opposite
51 ;; of `hippie-expand-ignore-buffers', in that the search is restricted
52 ;; to only the kind of buffers listed.
53 ;; If the variable `hippie-expand-no-restriction' is non-nil, narrowed
54 ;; buffers are widened before they are searched.
55 ;; The variable `hippie-expand-dabbrev-skip-space' controls whether
56 ;; trailing spaces will be included in the abbreviation to search for,
57 ;; which then gives the same behavior as the original `dabbrev-expand'.
58 ;; The variable `hippie-expand-dabbrev-as-symbol' controls whether
59 ;; characters of syntax '_' is considered part of the words to expand
60 ;; dynamically.
61 ;; See also the macro `make-hippie-expand-function' below.
63 ;; A short description of the current try-functions in this file:
64 ;; `try-complete-file-name' : very convenient to have in any buffer,
65 ;; and not just in the minibuffer or (some) shell-mode. It goes
66 ;; through all possible completions instead of just completing as
67 ;; much as is unique.
68 ;; `try-complete-file-name-partially' : To insert in the list just
69 ;; before `try-complete-file-name' for those who want first to get
70 ;; a file name completed only as many characters as is unique.
71 ;; `try-expand-all-abbrevs' : can be removed if you don't use abbrevs.
72 ;; Otherwise it looks through all abbrev-tables, starting with
73 ;; the local followed by the global.
74 ;; `try-expand-line' : Searches the buffer for an entire line that
75 ;; begins exactly as the current line. Convenient sometimes, for
76 ;; example as a substitute for (or complement to) the history
77 ;; list in shell-like buffers. At other times, only confusing.
78 ;; `try-expand-line-all-buffers' : Like `try-expand-line' but searches
79 ;; in all buffers (except the current). (This may be a little
80 ;; slow, don't use it unless you are really fond of `hippie-expand'.)
81 ;; `try-expand-list' : Tries to expand the text back to the nearest
82 ;; open delimiter, to a whole list from the buffer. Convenient for
83 ;; example when writing Lisp or TeX.
84 ;; `try-expand-list-all-buffers' : Like `try-expand-list' but searches
85 ;; in all buffers (except the current).
86 ;; `try-expand-dabbrev' : works exactly as dabbrev-expand (but of
87 ;; course in a way compatible with the other try-functions).
88 ;; `try-expand-dabbrev-all-buffers' : perhaps the most useful of them,
89 ;; like `dabbrev-expand' but searches all Emacs buffers (except the
90 ;; current) for matching words. (No, I don't find this one
91 ;; particularly slow.)
92 ;; `try-expand-dabbrev-visible': Searches the currently visible parts of
93 ;; all windows. Can be put before `try-expand-dabbrev-all-buffers' to
94 ;; first try the expansions you can see.
95 ;; `try-expand-dabbrev-from-kill': Searches the kill ring for a suitable
96 ;; completion of the word. Good to have, just in case the word was not
97 ;; found elsewhere.
98 ;; `try-expand-whole-kill' : Tries to complete text with a whole entry
99 ;; from the kill ring. May be good if you don't know how far up in
100 ;; the kill-ring the required entry is, and don't want to mess with
101 ;; "Choose Next Paste".
102 ;; `try-complete-lisp-symbol' : like `lisp-complete-symbol', but goes
103 ;; through all possibilities instead of completing what is unique.
104 ;; Might be tedious (usually a lot of possible completions) and
105 ;; since its function is much like `lisp-complete-symbol', which
106 ;; already has a key of its own, you might want to remove this.
107 ;; `try-complete-lisp-symbol-partially' : To insert in the list just
108 ;; before `try-complete-lisp-symbol' for those who first want to get
109 ;; completion of what is unique in the name.
111 ;; Not all of the above functions are by default in
112 ;; `hippie-expand-try-functions-list'. This variable is better set
113 ;; in ".emacs" to make `hippie-expand' behave maximally convenient
114 ;; according to personal taste. Also, instead of loading the
115 ;; variable with all kinds of try-functions above, it might be an
116 ;; idea to use `make-hippie-expand-function' to construct different
117 ;; `hippie-expand'-like functions, with different try-lists and bound
118 ;; to different keys. It is also possible to make
119 ;; `hippie-expand-try-functions-list' a buffer local variable, and
120 ;; let it depend on the mode (by setting it in the mode-hooks).
122 ;; To write new try-functions, consider the following:
123 ;; Each try-function takes one argument OLD which is nil the first
124 ;; time the function is called and true in succeeding calls for the
125 ;; same string to complete. The first time the function has to
126 ;; extract the string before point to complete, and substitute the
127 ;; first completion alternative for it. On following calls it has to
128 ;; substitute the next possible completion for the last tried string.
129 ;; The try-function is to return t as long as it finds new
130 ;; possible completions. When there are no more alternatives it has
131 ;; to restore the text before point to its original contents, and
132 ;; return nil (don't beep or message or anything).
133 ;; The try-function can (should) use the following functions:
134 ;; `he-init-string' : Initializes the text to substitute to the
135 ;; contents of the region BEGIN to END. Also sets the variable
136 ;; `he-search-string' to the text to expand.
137 ;; `he-substitute-string' : substitutes STR into the region
138 ;; initialized with `he-init-string'. (An optional second argument
139 ;; TRANS-CASE non-nil, means transfer of case from the abbreviation
140 ;; to the expansion is ok if that is enabled in the buffer.)
141 ;; `he-reset-string' : Resets the initialized region to its original
142 ;; contents.
143 ;; There is also a variable: `he-tried-table' which is meant to contain
144 ;; all tried expansions so far. The try-function can check this
145 ;; variable to see whether an expansion has already been tried
146 ;; (hint: `he-string-member').
148 ;; Known bugs
150 ;; It may happen that some completion suggestion occurs twice, in
151 ;; spite of the use of `he-tried-table' to prevent that. This is
152 ;; because different try-functions may try to complete different
153 ;; lengths of text, and thus put different amounts of the
154 ;; text in `he-tried-table'. Anyway this seems to occur seldom enough
155 ;; not to be too disturbing. Also it should NOT be possible for the
156 ;; opposite situation to occur, that `hippie-expand' misses some
157 ;; suggestion because it thinks it has already tried it.
159 ;; Acknowledgment
161 ;; I want to thank Mikael Djurfeldt in discussions with whom the idea
162 ;; of this function took form.
163 ;; I am also grateful to all those who have given me suggestions on
164 ;; how to improve it, and all those who helped to find and remove bugs.
167 ;;; Code:
169 (require 'comint)
171 (defgroup hippie-expand nil
172 "Expand text trying various ways to find its expansion."
173 :link '(custom-manual "(autotype)Hippie Expand")
174 :link '(emacs-commentary-link "hippie-exp")
175 :group 'abbrev
176 :group 'convenience)
178 (defvar he-num -1)
180 (defvar he-string-beg (make-marker))
182 (defvar he-string-end (make-marker))
184 (defvar he-search-string ())
186 (defvar he-expand-list ())
188 (defvar he-tried-table ())
190 (defvar he-search-loc (make-marker))
192 (defvar he-search-loc2 ())
194 (defvar he-search-bw ())
196 (defvar he-search-bufs ())
198 (defvar he-searched-n-bufs ())
200 (defvar he-search-window ())
202 ;;; Autoloaded for historical reasons (bug#12982)
203 ;;;###autoload
204 (defcustom hippie-expand-try-functions-list
205 '(try-complete-file-name-partially
206 try-complete-file-name
207 try-expand-all-abbrevs
208 try-expand-list
209 try-expand-line
210 try-expand-dabbrev
211 try-expand-dabbrev-all-buffers
212 try-expand-dabbrev-from-kill
213 try-complete-lisp-symbol-partially
214 try-complete-lisp-symbol)
215 "The list of expansion functions tried in order by `hippie-expand'.
216 To change the behavior of `hippie-expand', remove, change the order of,
217 or insert functions in this list."
218 :type '(repeat function)
219 :group 'hippie-expand)
221 (defcustom hippie-expand-verbose t
222 "Non-nil makes `hippie-expand' output which function it is trying."
223 :type 'boolean
224 :group 'hippie-expand)
226 (defcustom hippie-expand-dabbrev-skip-space nil
227 "Non-nil means tolerate trailing spaces in the abbreviation to expand."
228 :group 'hippie-expand
229 :type 'boolean)
231 (defcustom hippie-expand-dabbrev-as-symbol t
232 "Non-nil means expand as symbols, i.e. syntax `_' is considered a letter."
233 :group 'hippie-expand
234 :type 'boolean)
236 (defcustom hippie-expand-no-restriction t
237 "Non-nil means that narrowed buffers are widened during search."
238 :group 'hippie-expand
239 :type 'boolean)
241 (defcustom hippie-expand-max-buffers ()
242 "The maximum number of buffers (apart from the current) searched.
243 If nil, all buffers are searched."
244 :type '(choice (const :tag "All" nil)
245 integer)
246 :group 'hippie-expand)
248 (defcustom hippie-expand-ignore-buffers '("^ \\*.*\\*$" dired-mode)
249 "A list specifying which buffers not to search (if not current).
250 Can contain both regexps matching buffer names (as strings) and major modes
251 \(as atoms)"
252 :type '(repeat (choice regexp (symbol :tag "Major Mode")))
253 :group 'hippie-expand)
255 (defcustom hippie-expand-only-buffers ()
256 "A list specifying the only buffers to search (in addition to current).
257 Can contain both regexps matching buffer names (as strings) and major modes
258 \(as atoms). If non-nil, this variable overrides the variable
259 `hippie-expand-ignore-buffers'."
260 :type '(repeat (choice regexp (symbol :tag "Major Mode")))
261 :group 'hippie-expand)
263 ;;;###autoload
264 (defun hippie-expand (arg)
265 "Try to expand text before point, using multiple methods.
266 The expansion functions in `hippie-expand-try-functions-list' are
267 tried in order, until a possible expansion is found. Repeated
268 application of `hippie-expand' inserts successively possible
269 expansions.
270 With a positive numeric argument, jumps directly to the ARG next
271 function in this list. With a negative argument or just \\[universal-argument],
272 undoes the expansion."
273 (interactive "P")
274 (if (or (not arg)
275 (and (integerp arg) (> arg 0)))
276 (let ((first (or (= he-num -1)
277 (not (equal this-command last-command)))))
278 (if first
279 (progn
280 (setq he-num -1)
281 (setq he-tried-table nil)))
282 (if arg
283 (if (not first) (he-reset-string))
284 (setq arg 0))
285 (let ((i (max (+ he-num arg) 0)))
286 (while (not (or (>= i (length hippie-expand-try-functions-list))
287 (apply (nth i hippie-expand-try-functions-list)
288 (list (= he-num i)))))
289 (setq i (1+ i)))
290 (setq he-num i))
291 (if (>= he-num (length hippie-expand-try-functions-list))
292 (progn
293 (setq he-num -1)
294 (if first
295 (message "No expansion found")
296 (message "No further expansions found"))
297 (ding))
298 (if (and hippie-expand-verbose
299 (not (window-minibuffer-p)))
300 (message "Using %s"
301 (nth he-num hippie-expand-try-functions-list)))))
302 (if (and (>= he-num 0)
303 (eq (marker-buffer he-string-beg) (current-buffer)))
304 (progn
305 (setq he-num -1)
306 (he-reset-string)
307 (if (and hippie-expand-verbose
308 (not (window-minibuffer-p)))
309 (message "Undoing expansions"))))))
311 ;; Initializes the region to expand (to between BEG and END).
312 (defun he-init-string (beg end)
313 (set-marker he-string-beg beg)
314 (set-marker he-string-end end)
315 (setq he-search-string (buffer-substring-no-properties beg end)))
317 ;; Resets the expanded region to its original contents.
318 (defun he-reset-string ()
319 (let ((newpos (point-marker)))
320 (goto-char he-string-beg)
321 (insert he-search-string)
322 (delete-region (point) he-string-end)
323 (goto-char newpos)))
325 ;; Substitutes an expansion STR into the correct region (the region
326 ;; initialized with `he-init-string').
327 ;; An optional argument TRANS-CASE means that it is ok to transfer case
328 ;; from the abbreviation to the expansion if that is possible, and is
329 ;; enabled in the buffer.
330 (defun he-substitute-string (str &optional trans-case)
331 (let ((trans-case (and trans-case
332 case-replace
333 case-fold-search))
334 (newpos (point-marker))
335 (subst ()))
336 (goto-char he-string-beg)
337 (setq subst (if trans-case (he-transfer-case he-search-string str) str))
338 (setq he-tried-table (cons subst he-tried-table))
339 (insert subst)
340 (delete-region (point) he-string-end)
341 (goto-char newpos)))
343 (defun he-capitalize-first (str)
344 (save-match-data
345 (if (string-match "\\Sw*\\(\\sw\\).*" str)
346 (let ((res (downcase str))
347 (no (match-beginning 1)))
348 (aset res no (upcase (aref str no)))
349 res)
350 str)))
352 (defun he-ordinary-case-p (str)
353 (or (string= str (downcase str))
354 (string= str (upcase str))
355 (string= str (capitalize str))
356 (string= str (he-capitalize-first str))))
358 (defun he-transfer-case (from-str to-str)
359 (cond ((string= from-str (substring to-str 0 (min (length from-str)
360 (length to-str))))
361 to-str)
362 ((not (he-ordinary-case-p to-str))
363 to-str)
364 ((string= from-str (downcase from-str))
365 (downcase to-str))
366 ((string= from-str (upcase from-str))
367 (upcase to-str))
368 ((string= from-str (he-capitalize-first from-str))
369 (he-capitalize-first to-str))
370 ((string= from-str (capitalize from-str))
371 (capitalize to-str))
373 to-str)))
376 ;; Check if STR is a member of LST.
377 ;; Transform to the final case if optional TRANS-CASE is non-nil.
378 (defun he-string-member (str lst &optional trans-case)
379 (if str
380 (member (if (and trans-case
381 case-replace
382 case-fold-search)
383 (he-transfer-case he-search-string str)
384 str)
385 lst)))
387 ;; Check if current buffer matches any atom or regexp in LST.
388 ;; Atoms are interpreted as major modes, strings as regexps matching the name.
389 (defun he-buffer-member (lst)
390 (or (memq major-mode lst)
391 (progn
392 (while (and lst
393 (or (not (stringp (car lst)))
394 (not (string-match (car lst) (buffer-name)))))
395 (setq lst (cdr lst)))
396 lst)))
398 ;; For the real hippie-expand enthusiast: A macro that makes it
399 ;; possible to use many functions like hippie-expand, but with
400 ;; different try-functions-lists.
401 ;; Usage is for example:
402 ;; (fset 'my-complete-file (make-hippie-expand-function
403 ;; '(try-complete-file-name-partially
404 ;; try-complete-file-name)))
405 ;; (fset 'my-complete-line (make-hippie-expand-function
406 ;; '(try-expand-line
407 ;; try-expand-line-all-buffers)))
409 ;;;###autoload
410 (defmacro make-hippie-expand-function (try-list &optional verbose)
411 "Construct a function similar to `hippie-expand'.
412 Make it use the expansion functions in TRY-LIST. An optional second
413 argument VERBOSE non-nil makes the function verbose."
414 `(function (lambda (arg)
415 ,(concat
416 "Try to expand text before point, using the following functions: \n"
417 (mapconcat 'prin1-to-string (eval try-list) ", "))
418 (interactive "P")
419 (let ((hippie-expand-try-functions-list ,try-list)
420 (hippie-expand-verbose ,verbose))
421 (hippie-expand arg)))))
424 ;;; Here follows the try-functions and their requisites:
427 (defun try-complete-file-name (old)
428 "Try to complete text as a file name.
429 The argument OLD has to be nil the first call of this function, and t
430 for subsequent calls (for further possible completions of the same
431 string). It returns t if a new completion is found, nil otherwise."
432 (if (not old)
433 (progn
434 (he-init-string (he-file-name-beg) (point))
435 (let ((name-part (file-name-nondirectory he-search-string))
436 (dir-part (expand-file-name (or (file-name-directory
437 he-search-string) ""))))
438 (if (not (he-string-member name-part he-tried-table))
439 (setq he-tried-table (cons name-part he-tried-table)))
440 (if (and (not (equal he-search-string ""))
441 (file-directory-p dir-part))
442 (setq he-expand-list (sort (file-name-all-completions
443 name-part
444 dir-part)
445 'string-lessp))
446 (setq he-expand-list ())))))
448 (while (and he-expand-list
449 (he-string-member (car he-expand-list) he-tried-table))
450 (setq he-expand-list (cdr he-expand-list)))
451 (if (null he-expand-list)
452 (progn
453 (if old (he-reset-string))
455 (let ((filename (he-concat-directory-file-name
456 (file-name-directory he-search-string)
457 (car he-expand-list))))
458 (he-substitute-string filename)
459 (setq he-tried-table (cons (car he-expand-list) (cdr he-tried-table)))
460 (setq he-expand-list (cdr he-expand-list))
461 t)))
463 (defun try-complete-file-name-partially (old)
464 "Try to complete text as a file name, as many characters as unique.
465 The argument OLD has to be nil the first call of this function. It
466 returns t if a unique, possibly partial, completion is found, nil
467 otherwise."
468 (let ((expansion ()))
469 (if (not old)
470 (progn
471 (he-init-string (he-file-name-beg) (point))
472 (let ((name-part (file-name-nondirectory he-search-string))
473 (dir-part (expand-file-name (or (file-name-directory
474 he-search-string) ""))))
475 (if (and (not (equal he-search-string ""))
476 (file-directory-p dir-part))
477 (setq expansion (file-name-completion name-part
478 dir-part)))
479 (if (or (eq expansion t)
480 (string= expansion name-part)
481 (he-string-member expansion he-tried-table))
482 (setq expansion ())))))
484 (if (not expansion)
485 (progn
486 (if old (he-reset-string))
488 (let ((filename (he-concat-directory-file-name
489 (file-name-directory he-search-string)
490 expansion)))
491 (he-substitute-string filename)
492 (setq he-tried-table (cons expansion (cdr he-tried-table)))
493 t))))
495 (defvar he-file-name-chars
496 (cond ((memq system-type '(ms-dos windows-nt cygwin))
497 "-a-zA-Z0-9_/.,~^#$+=:\\\\")
498 (t ;; More strange file formats ?
499 "-a-zA-Z0-9_/.,~^#$+="))
500 "Characters that are considered part of the file name to expand.")
502 (defun he-file-name-beg ()
503 (let ((op (point)))
504 (save-excursion
505 (skip-chars-backward he-file-name-chars)
506 (if (> (skip-syntax-backward "w") 0) ;; No words with non-file chars
508 (point)))))
510 ;; Thanks go to David Hughes <ukchugd@ukpmr.cs.philips.nl> who
511 ;; helped to make it work on PC.
512 (defun he-concat-directory-file-name (dir-part name-part)
513 "Try to slam together two parts of a file specification, system dependently."
514 (cond ((null dir-part) name-part)
515 ((eq system-type 'ms-dos)
516 (if (and (string-match "\\\\" dir-part)
517 (not (string-match "/" dir-part))
518 (= (aref name-part (1- (length name-part))) ?/))
519 (aset name-part (1- (length name-part)) ?\\))
520 (concat dir-part name-part))
522 (concat dir-part name-part))))
524 (defun try-complete-lisp-symbol (old)
525 "Try to complete word as an Emacs Lisp symbol.
526 The argument OLD has to be nil the first call of this function, and t
527 for subsequent calls (for further possible completions of the same
528 string). It returns t if a new completion is found, nil otherwise."
529 (if (not old)
530 (progn
531 (he-init-string (he-lisp-symbol-beg) (point))
532 (if (not (he-string-member he-search-string he-tried-table))
533 (setq he-tried-table (cons he-search-string he-tried-table)))
534 (setq he-expand-list
535 (and (not (equal he-search-string ""))
536 (sort (all-completions he-search-string obarray
537 (function (lambda (sym)
538 (or (boundp sym)
539 (fboundp sym)
540 (symbol-plist sym)))))
541 'string-lessp)))))
542 (while (and he-expand-list
543 (he-string-member (car he-expand-list) he-tried-table))
544 (setq he-expand-list (cdr he-expand-list)))
545 (if (null he-expand-list)
546 (progn
547 (if old (he-reset-string))
549 (progn
550 (he-substitute-string (car he-expand-list))
551 (setq he-expand-list (cdr he-expand-list))
552 t)))
554 (defun try-complete-lisp-symbol-partially (old)
555 "Try to complete as an Emacs Lisp symbol, as many characters as unique.
556 The argument OLD has to be nil the first call of this function. It
557 returns t if a unique, possibly partial, completion is found, nil
558 otherwise."
559 (let ((expansion ()))
560 (if (not old)
561 (progn
562 (he-init-string (he-lisp-symbol-beg) (point))
563 (if (not (string= he-search-string ""))
564 (setq expansion
565 (try-completion he-search-string obarray
566 (function (lambda (sym)
567 (or (boundp sym)
568 (fboundp sym)
569 (symbol-plist sym)))))))
570 (if (or (eq expansion t)
571 (string= expansion he-search-string)
572 (he-string-member expansion he-tried-table))
573 (setq expansion ()))))
575 (if (not expansion)
576 (progn
577 (if old (he-reset-string))
579 (progn
580 (he-substitute-string expansion)
581 t))))
583 (defun he-lisp-symbol-beg ()
584 (save-excursion
585 (skip-syntax-backward "w_")
586 (point)))
588 (defun try-expand-line (old)
589 "Try to complete the current line to an entire line in the buffer.
590 The argument OLD has to be nil the first call of this function, and t
591 for subsequent calls (for further possible completions of the same
592 string). It returns t if a new completion is found, nil otherwise."
593 (let ((expansion ())
594 (strip-prompt (and (get-buffer-process (current-buffer))
595 comint-use-prompt-regexp
596 comint-prompt-regexp)))
597 (if (not old)
598 (progn
599 (he-init-string (he-line-beg strip-prompt) (point))
600 (set-marker he-search-loc he-string-beg)
601 (setq he-search-bw t)))
603 (if (not (equal he-search-string ""))
604 (save-excursion
605 (save-restriction
606 (if hippie-expand-no-restriction
607 (widen))
608 ;; Try looking backward unless inhibited.
609 (if he-search-bw
610 (progn
611 (goto-char he-search-loc)
612 (setq expansion (he-line-search he-search-string
613 strip-prompt t))
614 (set-marker he-search-loc (point))
615 (if (not expansion)
616 (progn
617 (set-marker he-search-loc he-string-end)
618 (setq he-search-bw ())))))
620 (if (not expansion) ; Then look forward.
621 (progn
622 (goto-char he-search-loc)
623 (setq expansion (he-line-search he-search-string
624 strip-prompt nil))
625 (set-marker he-search-loc (point)))))))
627 (if (not expansion)
628 (progn
629 (if old (he-reset-string))
631 (progn
632 (he-substitute-string expansion t)
633 t))))
635 (defun try-expand-line-all-buffers (old)
636 "Try to complete the current line, searching all other buffers.
637 The argument OLD has to be nil the first call of this function, and t
638 for subsequent calls (for further possible completions of the same
639 string). It returns t if a new completion is found, nil otherwise."
640 (he--all-buffers
642 (lambda () (he-line-beg (and (get-buffer-process (current-buffer))
643 comint-use-prompt-regexp
644 comint-prompt-regexp)))
645 (lambda (string)
646 (he-line-search string
647 (and (get-buffer-process (current-buffer))
648 comint-use-prompt-regexp
649 comint-prompt-regexp)
650 nil))))
652 (defun he--all-buffers (old beg-function search-function)
653 (let ((expansion ())
654 (buf (current-buffer))
655 (only-buffers hippie-expand-only-buffers)
656 (ignore-buffers hippie-expand-ignore-buffers)
657 (orig-case-fold-search case-fold-search))
658 (if (not old)
659 (progn
660 (he-init-string (funcall beg-function) (point))
661 (setq he-search-bufs (buffer-list))
662 (setq he-searched-n-bufs 0)
663 (set-marker he-search-loc 1 (car he-search-bufs))))
665 (if (not (equal he-search-string ""))
666 (while (and he-search-bufs
667 (not expansion)
668 (or (not hippie-expand-max-buffers)
669 (< he-searched-n-bufs hippie-expand-max-buffers)))
670 (set-buffer (car he-search-bufs))
671 (if (and (not (eq (current-buffer) buf))
672 (if only-buffers
673 (he-buffer-member only-buffers)
674 (not (he-buffer-member ignore-buffers))))
675 (save-excursion
676 (save-restriction
677 (if hippie-expand-no-restriction
678 (widen))
679 (goto-char he-search-loc)
680 (setq expansion
681 (let ((case-fold-search orig-case-fold-search))
682 (funcall search-function he-search-string)))
683 (set-marker he-search-loc (point))
684 (if (not expansion)
685 (progn
686 (setq he-search-bufs (cdr he-search-bufs))
687 (setq he-searched-n-bufs (1+ he-searched-n-bufs))
688 (set-marker he-search-loc 1 (car he-search-bufs))))))
689 (setq he-search-bufs (cdr he-search-bufs))
690 (set-marker he-search-loc 1 (car he-search-bufs)))))
692 (set-buffer buf)
693 (if (not expansion)
694 (progn
695 (if old (he-reset-string))
697 (progn
698 (he-substitute-string expansion t)
699 t))))
701 (defun he-line-search (str strip-prompt reverse)
702 (let ((result ()))
703 (while (and (not result)
704 (if reverse
705 (re-search-backward
706 (he-line-search-regexp str strip-prompt)
707 nil t)
708 (re-search-forward
709 (he-line-search-regexp str strip-prompt)
710 nil t)))
711 (setq result (buffer-substring-no-properties (match-end 1)
712 (match-end 0)))
713 (if (he-string-member result he-tried-table t)
714 (setq result nil))) ; if already in table, ignore
715 result))
717 (defun he-line-beg (strip-prompt)
718 (save-excursion
719 (if (re-search-backward (he-line-search-regexp "" strip-prompt)
720 (line-beginning-position) t)
721 (match-beginning 2)
722 (point))))
724 (defun he-line-search-regexp (pat strip-prompt)
725 (if strip-prompt
726 (concat "\\(" comint-prompt-regexp "\\|^\\s-*\\)\\(?2:"
727 (regexp-quote pat)
728 "[^\n]*[^ \t\n]\\)")
729 (concat "^\\(\\s-*\\)\\("
730 (regexp-quote pat)
731 "[^\n]*[^ \t\n]\\)")))
733 (defun try-expand-list (old)
734 "Try to complete the current beginning of a list.
735 The argument OLD has to be nil the first call of this function, and t
736 for subsequent calls (for further possible completions of the same
737 string). It returns t if a new completion is found, nil otherwise."
738 (let ((expansion ()))
739 (if (not old)
740 (progn
741 (he-init-string (he-list-beg) (point))
742 (set-marker he-search-loc he-string-beg)
743 (setq he-search-bw t)))
745 (if (not (equal he-search-string ""))
746 (save-excursion
747 (save-restriction
748 (if hippie-expand-no-restriction
749 (widen))
750 ;; Try looking backward unless inhibited.
751 (if he-search-bw
752 (progn
753 (goto-char he-search-loc)
754 (setq expansion (he-list-search he-search-string t))
755 (set-marker he-search-loc (point))
756 (if (not expansion)
757 (progn
758 (set-marker he-search-loc he-string-end)
759 (setq he-search-bw ())))))
761 (if (not expansion) ; Then look forward.
762 (progn
763 (goto-char he-search-loc)
764 (setq expansion (he-list-search he-search-string nil))
765 (set-marker he-search-loc (point)))))))
767 (if (not expansion)
768 (progn
769 (if old (he-reset-string))
771 (progn
772 (he-substitute-string expansion t)
773 t))))
775 (defun try-expand-list-all-buffers (old)
776 "Try to complete the current list, searching all other buffers.
777 The argument OLD has to be nil the first call of this function, and t
778 for subsequent calls (for further possible completions of the same
779 string). It returns t if a new completion is found, nil otherwise."
780 (he--all-buffers old #'he-list-beg #'he-list-search))
782 (defun he-list-search (str &optional reverse)
783 (let ((result ())
784 beg pos err)
785 (while (and (not result)
786 (if reverse
787 (search-backward str nil t)
788 (search-forward str nil t)))
789 (setq pos (point))
790 (setq beg (match-beginning 0))
791 (goto-char beg)
792 (setq err ())
793 (condition-case ()
794 (forward-list 1)
795 (error (setq err t)))
796 (if (and reverse
797 (> (point) he-string-beg))
798 (setq err t))
799 (if (not err)
800 (progn
801 (setq result (buffer-substring-no-properties beg (point)))
802 (if (he-string-member result he-tried-table t)
803 (setq result nil)))) ; if already in table, ignore
804 (goto-char pos))
805 result))
807 (defun he-list-beg ()
808 (save-excursion
809 (condition-case ()
810 (backward-up-list 1)
811 (error ()))
812 (point)))
814 (defun try-expand-all-abbrevs (old)
815 "Try to expand word before point according to all abbrev tables.
816 The argument OLD has to be nil the first call of this function, and t
817 for subsequent calls (for further possible expansions of the same
818 string). It returns t if a new expansion is found, nil otherwise."
819 (if (not old)
820 (progn
821 (he-init-string (he-dabbrev-beg) (point))
822 (setq he-expand-list
823 (and (not (equal he-search-string ""))
824 (mapcar (function (lambda (sym)
825 (if (and (boundp sym) (vectorp (eval sym)))
826 (abbrev-expansion (downcase he-search-string)
827 (eval sym)))))
828 (append '(local-abbrev-table
829 global-abbrev-table)
830 abbrev-table-name-list))))))
831 (while (and he-expand-list
832 (or (not (car he-expand-list))
833 (he-string-member (car he-expand-list) he-tried-table t)))
834 (setq he-expand-list (cdr he-expand-list)))
835 (if (null he-expand-list)
836 (progn
837 (if old (he-reset-string))
839 (progn
840 (he-substitute-string (car he-expand-list) t)
841 (setq he-expand-list (cdr he-expand-list))
842 t)))
844 (defun try-expand-dabbrev (old)
845 "Try to expand word \"dynamically\", searching the current buffer.
846 The argument OLD has to be nil the first call of this function, and t
847 for subsequent calls (for further possible expansions of the same
848 string). It returns t if a new expansion is found, nil otherwise."
849 (let ((expansion ()))
850 (if (not old)
851 (progn
852 (he-init-string (he-dabbrev-beg) (point))
853 (set-marker he-search-loc he-string-beg)
854 (setq he-search-bw t)))
856 (if (not (equal he-search-string ""))
857 (save-excursion
858 (save-restriction
859 (if hippie-expand-no-restriction
860 (widen))
861 ;; Try looking backward unless inhibited.
862 (if he-search-bw
863 (progn
864 (goto-char he-search-loc)
865 (setq expansion (he-dabbrev-search he-search-string t))
866 (set-marker he-search-loc (point))
867 (if (not expansion)
868 (progn
869 (set-marker he-search-loc he-string-end)
870 (setq he-search-bw ())))))
872 (if (not expansion) ; Then look forward.
873 (progn
874 (goto-char he-search-loc)
875 (setq expansion (he-dabbrev-search he-search-string nil))
876 (set-marker he-search-loc (point)))))))
878 (if (not expansion)
879 (progn
880 (if old (he-reset-string))
882 (progn
883 (he-substitute-string expansion t)
884 t))))
886 (defun try-expand-dabbrev-all-buffers (old)
887 "Try to expand word \"dynamically\", searching all other buffers.
888 The argument OLD has to be nil the first call of this function, and t
889 for subsequent calls (for further possible expansions of the same
890 string). It returns t if a new expansion is found, nil otherwise."
891 (he--all-buffers old #'he-dabbrev-beg #'he-dabbrev-search))
893 ;; Thanks go to Jeff Dairiki <dairiki@faraday.apl.washington.edu> who
894 ;; suggested this one.
895 (defun try-expand-dabbrev-visible (old)
896 "Try to expand word \"dynamically\", searching visible window parts.
897 The argument OLD has to be nil the first call of this function, and t
898 for subsequent calls (for further possible expansions of the same
899 string). It returns t if a new expansion is found, nil otherwise."
900 (let ((expansion ())
901 (flag (if (frame-visible-p (window-frame))
902 'visible t)))
903 (unless old
904 (he-init-string (he-dabbrev-beg) (point))
905 (setq he-search-window (selected-window))
906 (set-marker he-search-loc
907 (window-start he-search-window)
908 (window-buffer he-search-window)))
910 (while (and (not (equal he-search-string ""))
911 (marker-position he-search-loc)
912 (not expansion))
913 (with-current-buffer (marker-buffer he-search-loc)
914 (save-excursion
915 (goto-char he-search-loc)
916 (setq expansion (he-dabbrev-search he-search-string ()
917 (window-end he-search-window)))
918 (if (and expansion
919 (eq (marker-buffer he-string-beg) (current-buffer))
920 (eq (marker-position he-string-beg) (match-beginning 0)))
921 (setq expansion
922 (he-dabbrev-search he-search-string ()
923 (window-end he-search-window))))
924 (set-marker he-search-loc (point) (current-buffer))))
925 (unless expansion
926 (setq he-search-window (next-window he-search-window nil flag))
927 (if (eq he-search-window (selected-window))
928 (set-marker he-search-loc nil)
929 (set-marker he-search-loc (window-start he-search-window)
930 (window-buffer he-search-window)))))
932 (if (not expansion)
933 (progn
934 (if old (he-reset-string))
936 (progn
937 (he-substitute-string expansion t)
938 t))))
940 (defun he-dabbrev-search (pattern &optional reverse limit)
941 (let ((result ())
942 (regpat (cond ((not hippie-expand-dabbrev-as-symbol)
943 (concat "\\<" (regexp-quote pattern) "\\sw+"))
944 ((eq (char-syntax (aref pattern 0)) ?_)
945 (concat (regexp-quote pattern) "\\(\\sw\\|\\s_\\)+"))
947 (concat "\\<" (regexp-quote pattern)
948 "\\(\\sw\\|\\s_\\)+")))))
949 (while (and (not result)
950 (if reverse
951 (re-search-backward regpat limit t)
952 (re-search-forward regpat limit t)))
953 (setq result (buffer-substring-no-properties (match-beginning 0)
954 (match-end 0)))
955 (if (or (and hippie-expand-dabbrev-as-symbol
956 (> (match-beginning 0) (point-min))
957 (memq (char-syntax (char-after (1- (match-beginning 0))))
958 '(?_ ?w)))
959 (he-string-member result he-tried-table t))
960 (setq result nil))) ; ignore if bad prefix or already in table
961 result))
963 (defun he-dabbrev-beg ()
964 (let ((op (point)))
965 (save-excursion
966 (if hippie-expand-dabbrev-skip-space
967 (skip-syntax-backward ". "))
968 (if (= (skip-syntax-backward (if hippie-expand-dabbrev-as-symbol
969 "w_" "w"))
972 (point)))))
974 (defun try-expand-dabbrev-from-kill (old)
975 "Try to expand word \"dynamically\", searching the kill ring.
976 The argument OLD has to be nil the first call of this function, and t
977 for subsequent calls (for further possible completions of the same
978 string). It returns t if a new completion is found, nil otherwise."
979 (let ((expansion ()))
980 (if (not old)
981 (progn
982 (he-init-string (he-dabbrev-beg) (point))
983 (setq he-expand-list
984 (if (not (equal he-search-string ""))
985 kill-ring))
986 (setq he-search-loc2 0)))
987 (if (not (equal he-search-string ""))
988 (setq expansion (he-dabbrev-kill-search he-search-string)))
989 (if (not expansion)
990 (progn
991 (if old (he-reset-string))
993 (progn
994 (he-substitute-string expansion t)
995 t))))
997 (defun he-dabbrev-kill-search (pattern)
998 (let ((result ())
999 (regpat (cond ((not hippie-expand-dabbrev-as-symbol)
1000 (concat "\\<" (regexp-quote pattern) "\\sw+"))
1001 ((eq (char-syntax (aref pattern 0)) ?_)
1002 (concat (regexp-quote pattern) "\\(\\sw\\|\\s_\\)+"))
1004 (concat "\\<" (regexp-quote pattern)
1005 "\\(\\sw\\|\\s_\\)+"))))
1006 (killstr (car he-expand-list)))
1007 (while (and (not result)
1008 he-expand-list)
1009 (while (and (not result)
1010 (string-match regpat killstr he-search-loc2))
1011 (setq result (substring killstr (match-beginning 0) (match-end 0)))
1012 (set-text-properties 0 (length result) () result)
1013 (setq he-search-loc2 (1+ (match-beginning 0)))
1014 (if (or (and hippie-expand-dabbrev-as-symbol
1015 (> (match-beginning 0) 0)
1016 (memq (char-syntax (aref killstr (1- (match-beginning 0))))
1017 '(?_ ?w)))
1018 (he-string-member result he-tried-table t))
1019 (setq result nil))) ; ignore if bad prefix or already in table
1020 (if (and (not result)
1021 he-expand-list)
1022 (progn
1023 (setq he-expand-list (cdr he-expand-list))
1024 (setq killstr (car he-expand-list))
1025 (setq he-search-loc2 0))))
1026 result))
1028 (defun try-expand-whole-kill (old)
1029 "Try to complete text with something from the kill ring.
1030 The argument OLD has to be nil the first call of this function, and t
1031 for subsequent calls (for further possible completions of the same
1032 string). It returns t if a new completion is found, nil otherwise."
1033 (let ((expansion ()))
1034 (if (not old)
1035 (progn
1036 (he-init-string (he-kill-beg) (point))
1037 (if (not (he-string-member he-search-string he-tried-table))
1038 (setq he-tried-table (cons he-search-string he-tried-table)))
1039 (setq he-expand-list
1040 (if (not (equal he-search-string ""))
1041 kill-ring))
1042 (setq he-search-loc2 ())))
1043 (if (not (equal he-search-string ""))
1044 (setq expansion (he-whole-kill-search he-search-string)))
1045 (if (not expansion)
1046 (progn
1047 (if old (he-reset-string))
1049 (progn
1050 (he-substitute-string expansion)
1051 t))))
1053 (defun he-whole-kill-search (str)
1054 (let ((case-fold-search ())
1055 (result ())
1056 (str (regexp-quote str))
1057 (killstr (car he-expand-list))
1058 (pos -1))
1059 (while (and (not result)
1060 he-expand-list)
1061 (if (not he-search-loc2)
1062 (while (setq pos (string-match str killstr (1+ pos)))
1063 (setq he-search-loc2 (cons pos he-search-loc2))))
1064 (while (and (not result)
1065 he-search-loc2)
1066 (setq pos (car he-search-loc2))
1067 (setq he-search-loc2 (cdr he-search-loc2))
1068 (save-excursion
1069 (goto-char he-string-beg)
1070 (if (and (>= (- (point) pos) (point-min)) ; avoid some string GC
1071 (eq (char-after (- (point) pos)) (aref killstr 0))
1072 (search-backward (substring killstr 0 pos)
1073 (- (point) pos) t))
1074 (progn
1075 (setq result (substring killstr pos))
1076 (set-text-properties 0 (length result) () result))))
1077 (if (and result
1078 (he-string-member result he-tried-table))
1079 (setq result nil))) ; ignore if already in table
1080 (if (and (not result)
1081 he-expand-list)
1082 (progn
1083 (setq he-expand-list (cdr he-expand-list))
1084 (setq killstr (car he-expand-list))
1085 (setq pos -1))))
1086 result))
1088 (defun he-kill-beg ()
1089 (let ((op (point)))
1090 (save-excursion
1091 (skip-syntax-backward "^w_")
1092 (if (= (skip-syntax-backward "w_") 0)
1094 (point)))))
1097 (provide 'hippie-exp)
1099 ;;; hippie-exp.el ends here