1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-21 06:55:39 +00:00
emacs/lisp/hippie-exp.el

1095 lines
39 KiB
EmacsLisp
Raw Permalink Normal View History

;;; hippie-exp.el --- expand text trying various ways to find its expansion -*- lexical-binding: t; -*-
1993-03-17 15:58:09 +00:00
2024-01-02 01:47:10 +00:00
;; Copyright (C) 1992, 2001-2024 Free Software Foundation, Inc.
1996-01-14 07:34:30 +00:00
1993-03-17 15:58:09 +00:00
;; Author: Anders Holst <aho@sans.kth.se>
;; Maintainer: emacs-devel@gnu.org
;; Old-Version: 1.6
1998-05-26 09:23:23 +00:00
;; Keywords: abbrev convenience
1993-03-17 15:58:09 +00:00
1993-01-06 04:35:15 +00:00
;; This file is part of GNU Emacs.
;; GNU Emacs is free software: you can redistribute it and/or modify
1993-01-06 04:35:15 +00:00
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
1993-01-06 04:35:15 +00:00
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
1993-01-06 04:35:15 +00:00
1993-03-17 17:17:05 +00:00
;;; Commentary:
1996-01-14 07:34:30 +00:00
1993-01-06 04:35:15 +00:00
;; `hippie-expand' is a single function for a lot of different kinds
;; of completions and expansions. Called repeatedly it tries all
2003-01-31 15:24:20 +00:00
;; possible completions in succession.
1993-01-06 04:35:15 +00:00
;; Which kinds of completions to try, and in which order, is
;; determined by the contents of `hippie-expand-try-functions-list'.
;; Much customization of `hippie-expand' can be made by changing the
;; order of, removing, or inserting new functions in this list.
;; Given a positive numeric argument, `hippie-expand' jumps directly
;; ARG functions forward in this list. Given some other argument
;; (a negative argument or just Ctrl-U) it undoes the tried
;; completion.
;;
1993-01-06 04:35:15 +00:00
;; If the variable `hippie-expand-verbose' is non-nil, `hippie-expand'
;; outputs in a message which try-function in the list that is used
;; currently (i.e. was used currently and will be tried first the next
1993-01-06 04:35:15 +00:00
;; time).
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
;; The variable `hippie-expand-max-buffers' determines in how many
;; buffers, apart from the current, to search for expansions in. It
;; is used by the try-functions named "-all-buffers".
;; The variable `hippie-expand-ignore-buffers' is a list of regexps
;; matching buffer names (as strings) or major modes (as atoms) of
;; buffers that should not be searched by the try-functions named
;; "-all-buffers".
;; If set, the variable `hippie-expand-only-buffers' does the opposite
;; of `hippie-expand-ignore-buffers', in that the search is restricted
;; to only the kind of buffers listed.
;; If the variable `hippie-expand-no-restriction' is non-nil, narrowed
;; buffers are widened before they are searched.
;; The variable `hippie-expand-dabbrev-skip-space' controls whether
;; trailing spaces will be included in the abbreviation to search for,
;; which then gives the same behavior as the original `dabbrev-expand'.
;; The variable `hippie-expand-dabbrev-as-symbol' controls whether
;; characters of syntax '_' is considered part of the words to expand
;; dynamically.
;; See also the function `make-hippie-expand-function' below.
2003-01-31 15:24:20 +00:00
;;
1993-01-06 04:35:15 +00:00
;; A short description of the current try-functions in this file:
;; `try-complete-file-name' : very convenient to have in any buffer,
;; and not just in the minibuffer or (some) shell-mode. It goes
;; through all possible completions instead of just completing as
;; much as is unique.
;; `try-complete-file-name-partially' : To insert in the list just
;; before `try-complete-file-name' for those who want first to get
;; a file name completed only as many characters as is unique.
;; `try-expand-all-abbrevs' : can be removed if you don't use abbrevs.
;; Otherwise it looks through all abbrev-tables, starting with
2003-01-31 15:24:20 +00:00
;; the local followed by the global.
;; `try-expand-line' : Searches the buffer for an entire line that
;; begins exactly as the current line. Convenient sometimes, for
1993-01-06 04:35:15 +00:00
;; example as a substitute for (or complement to) the history
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
;; list in shell-like buffers. At other times, only confusing.
1993-01-06 04:35:15 +00:00
;; `try-expand-line-all-buffers' : Like `try-expand-line' but searches
;; in all buffers (except the current). (This may be a little
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
;; slow, don't use it unless you are really fond of `hippie-expand'.)
;; `try-expand-list' : Tries to expand the text back to the nearest
;; open delimiter, to a whole list from the buffer. Convenient for
;; example when writing Lisp or TeX.
2003-01-31 15:24:20 +00:00
;; `try-expand-list-all-buffers' : Like `try-expand-list' but searches
;; in all buffers (except the current).
1993-01-06 04:35:15 +00:00
;; `try-expand-dabbrev' : works exactly as dabbrev-expand (but of
;; course in a way compatible with the other try-functions).
;; `try-expand-dabbrev-all-buffers' : perhaps the most useful of them,
;; like `dabbrev-expand' but searches all Emacs buffers (except the
;; current) for matching words. (No, I don't find this one
2003-01-31 15:24:20 +00:00
;; particularly slow.)
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
;; `try-expand-dabbrev-visible': Searches the currently visible parts of
;; all windows. Can be put before `try-expand-dabbrev-all-buffers' to
;; first try the expansions you can see.
;; `try-expand-dabbrev-from-kill': Searches the kill ring for a suitable
;; completion of the word. Good to have, just in case the word was not
;; found elsewhere.
;; `try-expand-whole-kill' : Tries to complete text with a whole entry
;; from the kill ring. May be good if you don't know how far up in
;; the kill-ring the required entry is, and don't want to mess with
;; "Choose Next Paste".
;; `try-complete-lisp-symbol' : like `elisp-completion-at-point', but goes
1993-01-06 04:35:15 +00:00
;; through all possibilities instead of completing what is unique.
;; Might be tedious (usually a lot of possible completions) and
;; since its function is much like `completion-at-point', which
1993-01-06 04:35:15 +00:00
;; already has a key of its own, you might want to remove this.
;; `try-complete-lisp-symbol-partially' : To insert in the list just
;; before `try-complete-lisp-symbol' for those who first want to get
2003-01-31 15:24:20 +00:00
;; completion of what is unique in the name.
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
;;
;; Not all of the above functions are by default in
;; `hippie-expand-try-functions-list'. This variable is better set
;; in ".emacs" to make `hippie-expand' behave maximally convenient
;; according to personal taste. Also, instead of loading the
;; variable with all kinds of try-functions above, it might be an
;; idea to use `make-hippie-expand-function' to construct different
;; `hippie-expand'-like functions, with different try-lists and bound
;; to different keys. It is also possible to make
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
;; `hippie-expand-try-functions-list' a buffer local variable, and
;; let it depend on the mode (by setting it in the mode-hooks).
1993-01-06 04:35:15 +00:00
;;
;; To write new try-functions, consider the following:
;; Each try-function takes one argument OLD which is nil the first
;; time the function is called and true in succeeding calls for the
;; same string to complete. The first time the function has to
;; extract the string before point to complete, and substitute the
;; first completion alternative for it. On following calls it has to
;; substitute the next possible completion for the last tried string.
;; The try-function is to return t as long as it finds new
;; possible completions. When there are no more alternatives it has
;; to restore the text before point to its original contents, and
;; return nil (don't beep or message or anything).
;; The try-function can (should) use the following functions:
;; `he-init-string' : Initializes the text to substitute to the
;; contents of the region BEGIN to END. Also sets the variable
;; `he-search-string' to the text to expand.
;; `he-substitute-string' : substitutes STR into the region
;; initialized with `he-init-string'. (An optional second argument
;; TRANS-CASE non-nil, means transfer of case from the abbreviation
;; to the expansion is ok if that is enabled in the buffer.)
;; `he-reset-string' : Resets the initialized region to its original
;; contents.
;; There is also a variable: `he-tried-table' which is meant to contain
2003-01-31 15:24:20 +00:00
;; all tried expansions so far. The try-function can check this
1993-01-06 04:35:15 +00:00
;; variable to see whether an expansion has already been tried
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
;; (hint: `he-string-member').
1993-01-06 04:35:15 +00:00
;;
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
;; Known bugs
1993-01-06 04:35:15 +00:00
;;
;; It may happen that some completion suggestion occurs twice, in
2003-01-31 15:24:20 +00:00
;; spite of the use of `he-tried-table' to prevent that. This is
1993-01-06 04:35:15 +00:00
;; because different try-functions may try to complete different
;; lengths of text, and thus put different amounts of the
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
;; text in `he-tried-table'. Anyway this seems to occur seldom enough
;; not to be too disturbing. Also it should NOT be possible for the
1993-01-06 04:35:15 +00:00
;; opposite situation to occur, that `hippie-expand' misses some
;; suggestion because it thinks it has already tried it.
;;
;; Acknowledgment
1993-01-06 04:35:15 +00:00
;;
;; I want to thank Mikael Djurfeldt in discussions with whom the idea
;; of this function took form.
;; I am also grateful to all those who have given me suggestions on
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
;; how to improve it, and all those who helped to find and remove bugs.
1993-01-06 04:35:15 +00:00
;;
1993-03-17 17:17:05 +00:00
;;; Code:
1993-01-06 04:35:15 +00:00
2009-01-01 02:46:11 +00:00
(require 'comint)
1997-05-03 19:53:57 +00:00
(defgroup hippie-expand nil
"Expand text trying various ways to find its expansion."
:link '(custom-manual "(autotype)Hippie Expand")
:link '(emacs-commentary-link "hippie-exp")
1998-05-26 09:23:23 +00:00
:group 'abbrev
:group 'convenience)
1997-05-03 19:53:57 +00:00
1993-01-06 04:35:15 +00:00
(defvar he-num -1)
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
(defvar he-string-beg (make-marker))
1993-01-06 04:35:15 +00:00
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
(defvar he-string-end (make-marker))
1993-01-06 04:35:15 +00:00
(defvar he-search-string ())
(defvar he-expand-list ())
(defvar he-tried-table ())
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
(defvar he-search-loc (make-marker))
1993-01-06 04:35:15 +00:00
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(defvar he-search-loc2 ())
1993-01-06 04:35:15 +00:00
(defvar he-search-bw ())
(defvar he-search-bufs ())
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
(defvar he-searched-n-bufs ())
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(defvar he-search-window ())
;;; Autoloaded for historical reasons (bug#12982)
;;;###autoload
(defcustom hippie-expand-try-functions-list
'(try-complete-file-name-partially
try-complete-file-name
try-expand-all-abbrevs
try-expand-list
try-expand-line
try-expand-dabbrev
try-expand-dabbrev-all-buffers
try-expand-dabbrev-from-kill
try-complete-lisp-symbol-partially
try-complete-lisp-symbol)
1993-01-06 04:35:15 +00:00
"The list of expansion functions tried in order by `hippie-expand'.
To change the behavior of `hippie-expand', remove, change the order of,
or insert functions in this list."
:type '(repeat function))
1993-01-06 04:35:15 +00:00
1997-05-03 19:53:57 +00:00
(defcustom hippie-expand-verbose t
* align.el: * allout.el: * apropos.el: * arc-mode.el: * autoinsert.el: * avoid.el: * battery.el: * bookmark.el: * buff-menu.el: * calculator.el: * chistory.el: * cmuscheme.el: * comint.el: * compare-w.el: * dabbrev.el: * delim-col.el: * desktop.el: * diff-mode.el: * diff.el: * dired-aux.el: * dired-x.el: * dired.el: * dos-vars.el: * ediff-diff.el: * ediff-help.el: * ediff-init.el: * ediff-merg.el: * ediff-mult.el: * ediff-ptch.el: * ediff-vers.el: * ediff-wind.el: * ediff.el: * emerge.el: * facemenu.el: * faces.el: * ffap.el: * filecache.el: * find-dired.el: * font-core.el: * font-lock.el: * forms.el: * fringe.el: * help-at-pt.el: * hippie-exp.el: * ido.el: * image-file.el: * imenu.el: * indent.el: * info.el: * isearchb.el: * iswitchb.el: * jit-lock.el: * jka-compr.el: * log-edit.el: * lpr.el: * ls-lisp.el: * man.el: * menu-bar.el: * midnight.el: * mouse-sel.el: * mouse.el: * msb.el: * outline.el: * paren.el: * pcmpl-cvs.el: * pcmpl-gnu.el: * pcomplete.el: * pcvs-info.el: * pcvs-parse.el: * printing.el: * ps-mule.el: * ps-print.el: * replace.el: * ruler-mode.el: * saveplace.el: * sb-image.el: * scroll-bar.el: * sha1.el: * shadowfile.el: * shell.el: * sort.el: * speedbar.el: * strokes.el: * tempo.el: * term.el: * terminal.el: * time-stamp.el: * time.el: * tree-widget.el: * type-break.el: * vc-cvs.el: * vc-hg.el: * vc-mcvs.el: * vc-rcs.el: * vc-sccs.el: * vc.el: * view.el: * w32-vars.el: * whitespace.el: * wid-edit.el: Remove leading * from docstrings of defcustoms, deffaces, defconsts and defuns.
2008-12-03 05:48:14 +00:00
"Non-nil makes `hippie-expand' output which function it is trying."
:type 'boolean)
1993-01-06 04:35:15 +00:00
(defcustom hippie-expand-dabbrev-skip-space nil
* align.el: * allout.el: * apropos.el: * arc-mode.el: * autoinsert.el: * avoid.el: * battery.el: * bookmark.el: * buff-menu.el: * calculator.el: * chistory.el: * cmuscheme.el: * comint.el: * compare-w.el: * dabbrev.el: * delim-col.el: * desktop.el: * diff-mode.el: * diff.el: * dired-aux.el: * dired-x.el: * dired.el: * dos-vars.el: * ediff-diff.el: * ediff-help.el: * ediff-init.el: * ediff-merg.el: * ediff-mult.el: * ediff-ptch.el: * ediff-vers.el: * ediff-wind.el: * ediff.el: * emerge.el: * facemenu.el: * faces.el: * ffap.el: * filecache.el: * find-dired.el: * font-core.el: * font-lock.el: * forms.el: * fringe.el: * help-at-pt.el: * hippie-exp.el: * ido.el: * image-file.el: * imenu.el: * indent.el: * info.el: * isearchb.el: * iswitchb.el: * jit-lock.el: * jka-compr.el: * log-edit.el: * lpr.el: * ls-lisp.el: * man.el: * menu-bar.el: * midnight.el: * mouse-sel.el: * mouse.el: * msb.el: * outline.el: * paren.el: * pcmpl-cvs.el: * pcmpl-gnu.el: * pcomplete.el: * pcvs-info.el: * pcvs-parse.el: * printing.el: * ps-mule.el: * ps-print.el: * replace.el: * ruler-mode.el: * saveplace.el: * sb-image.el: * scroll-bar.el: * sha1.el: * shadowfile.el: * shell.el: * sort.el: * speedbar.el: * strokes.el: * tempo.el: * term.el: * terminal.el: * time-stamp.el: * time.el: * tree-widget.el: * type-break.el: * vc-cvs.el: * vc-hg.el: * vc-mcvs.el: * vc-rcs.el: * vc-sccs.el: * vc.el: * view.el: * w32-vars.el: * whitespace.el: * wid-edit.el: Remove leading * from docstrings of defcustoms, deffaces, defconsts and defuns.
2008-12-03 05:48:14 +00:00
"Non-nil means tolerate trailing spaces in the abbreviation to expand."
:type 'boolean)
(defcustom hippie-expand-dabbrev-as-symbol t
* align.el: * allout.el: * apropos.el: * arc-mode.el: * autoinsert.el: * avoid.el: * battery.el: * bookmark.el: * buff-menu.el: * calculator.el: * chistory.el: * cmuscheme.el: * comint.el: * compare-w.el: * dabbrev.el: * delim-col.el: * desktop.el: * diff-mode.el: * diff.el: * dired-aux.el: * dired-x.el: * dired.el: * dos-vars.el: * ediff-diff.el: * ediff-help.el: * ediff-init.el: * ediff-merg.el: * ediff-mult.el: * ediff-ptch.el: * ediff-vers.el: * ediff-wind.el: * ediff.el: * emerge.el: * facemenu.el: * faces.el: * ffap.el: * filecache.el: * find-dired.el: * font-core.el: * font-lock.el: * forms.el: * fringe.el: * help-at-pt.el: * hippie-exp.el: * ido.el: * image-file.el: * imenu.el: * indent.el: * info.el: * isearchb.el: * iswitchb.el: * jit-lock.el: * jka-compr.el: * log-edit.el: * lpr.el: * ls-lisp.el: * man.el: * menu-bar.el: * midnight.el: * mouse-sel.el: * mouse.el: * msb.el: * outline.el: * paren.el: * pcmpl-cvs.el: * pcmpl-gnu.el: * pcomplete.el: * pcvs-info.el: * pcvs-parse.el: * printing.el: * ps-mule.el: * ps-print.el: * replace.el: * ruler-mode.el: * saveplace.el: * sb-image.el: * scroll-bar.el: * sha1.el: * shadowfile.el: * shell.el: * sort.el: * speedbar.el: * strokes.el: * tempo.el: * term.el: * terminal.el: * time-stamp.el: * time.el: * tree-widget.el: * type-break.el: * vc-cvs.el: * vc-hg.el: * vc-mcvs.el: * vc-rcs.el: * vc-sccs.el: * vc.el: * view.el: * w32-vars.el: * whitespace.el: * wid-edit.el: Remove leading * from docstrings of defcustoms, deffaces, defconsts and defuns.
2008-12-03 05:48:14 +00:00
"Non-nil means expand as symbols, i.e. syntax `_' is considered a letter."
:type 'boolean)
(defcustom hippie-expand-no-restriction t
* align.el: * allout.el: * apropos.el: * arc-mode.el: * autoinsert.el: * avoid.el: * battery.el: * bookmark.el: * buff-menu.el: * calculator.el: * chistory.el: * cmuscheme.el: * comint.el: * compare-w.el: * dabbrev.el: * delim-col.el: * desktop.el: * diff-mode.el: * diff.el: * dired-aux.el: * dired-x.el: * dired.el: * dos-vars.el: * ediff-diff.el: * ediff-help.el: * ediff-init.el: * ediff-merg.el: * ediff-mult.el: * ediff-ptch.el: * ediff-vers.el: * ediff-wind.el: * ediff.el: * emerge.el: * facemenu.el: * faces.el: * ffap.el: * filecache.el: * find-dired.el: * font-core.el: * font-lock.el: * forms.el: * fringe.el: * help-at-pt.el: * hippie-exp.el: * ido.el: * image-file.el: * imenu.el: * indent.el: * info.el: * isearchb.el: * iswitchb.el: * jit-lock.el: * jka-compr.el: * log-edit.el: * lpr.el: * ls-lisp.el: * man.el: * menu-bar.el: * midnight.el: * mouse-sel.el: * mouse.el: * msb.el: * outline.el: * paren.el: * pcmpl-cvs.el: * pcmpl-gnu.el: * pcomplete.el: * pcvs-info.el: * pcvs-parse.el: * printing.el: * ps-mule.el: * ps-print.el: * replace.el: * ruler-mode.el: * saveplace.el: * sb-image.el: * scroll-bar.el: * sha1.el: * shadowfile.el: * shell.el: * sort.el: * speedbar.el: * strokes.el: * tempo.el: * term.el: * terminal.el: * time-stamp.el: * time.el: * tree-widget.el: * type-break.el: * vc-cvs.el: * vc-hg.el: * vc-mcvs.el: * vc-rcs.el: * vc-sccs.el: * vc.el: * view.el: * w32-vars.el: * whitespace.el: * wid-edit.el: Remove leading * from docstrings of defcustoms, deffaces, defconsts and defuns.
2008-12-03 05:48:14 +00:00
"Non-nil means that narrowed buffers are widened during search."
:type 'boolean)
1997-05-03 19:53:57 +00:00
(defcustom hippie-expand-max-buffers ()
* align.el: * allout.el: * apropos.el: * arc-mode.el: * autoinsert.el: * avoid.el: * battery.el: * bookmark.el: * buff-menu.el: * calculator.el: * chistory.el: * cmuscheme.el: * comint.el: * compare-w.el: * dabbrev.el: * delim-col.el: * desktop.el: * diff-mode.el: * diff.el: * dired-aux.el: * dired-x.el: * dired.el: * dos-vars.el: * ediff-diff.el: * ediff-help.el: * ediff-init.el: * ediff-merg.el: * ediff-mult.el: * ediff-ptch.el: * ediff-vers.el: * ediff-wind.el: * ediff.el: * emerge.el: * facemenu.el: * faces.el: * ffap.el: * filecache.el: * find-dired.el: * font-core.el: * font-lock.el: * forms.el: * fringe.el: * help-at-pt.el: * hippie-exp.el: * ido.el: * image-file.el: * imenu.el: * indent.el: * info.el: * isearchb.el: * iswitchb.el: * jit-lock.el: * jka-compr.el: * log-edit.el: * lpr.el: * ls-lisp.el: * man.el: * menu-bar.el: * midnight.el: * mouse-sel.el: * mouse.el: * msb.el: * outline.el: * paren.el: * pcmpl-cvs.el: * pcmpl-gnu.el: * pcomplete.el: * pcvs-info.el: * pcvs-parse.el: * printing.el: * ps-mule.el: * ps-print.el: * replace.el: * ruler-mode.el: * saveplace.el: * sb-image.el: * scroll-bar.el: * sha1.el: * shadowfile.el: * shell.el: * sort.el: * speedbar.el: * strokes.el: * tempo.el: * term.el: * terminal.el: * time-stamp.el: * time.el: * tree-widget.el: * type-break.el: * vc-cvs.el: * vc-hg.el: * vc-mcvs.el: * vc-rcs.el: * vc-sccs.el: * vc.el: * view.el: * w32-vars.el: * whitespace.el: * wid-edit.el: Remove leading * from docstrings of defcustoms, deffaces, defconsts and defuns.
2008-12-03 05:48:14 +00:00
"The maximum number of buffers (apart from the current) searched.
1997-05-03 19:53:57 +00:00
If nil, all buffers are searched."
:type '(choice (const :tag "All" nil)
integer))
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
(defcustom hippie-expand-ignore-buffers '("^ \\*.*\\*$" dired-mode)
* align.el: * allout.el: * apropos.el: * arc-mode.el: * autoinsert.el: * avoid.el: * battery.el: * bookmark.el: * buff-menu.el: * calculator.el: * chistory.el: * cmuscheme.el: * comint.el: * compare-w.el: * dabbrev.el: * delim-col.el: * desktop.el: * diff-mode.el: * diff.el: * dired-aux.el: * dired-x.el: * dired.el: * dos-vars.el: * ediff-diff.el: * ediff-help.el: * ediff-init.el: * ediff-merg.el: * ediff-mult.el: * ediff-ptch.el: * ediff-vers.el: * ediff-wind.el: * ediff.el: * emerge.el: * facemenu.el: * faces.el: * ffap.el: * filecache.el: * find-dired.el: * font-core.el: * font-lock.el: * forms.el: * fringe.el: * help-at-pt.el: * hippie-exp.el: * ido.el: * image-file.el: * imenu.el: * indent.el: * info.el: * isearchb.el: * iswitchb.el: * jit-lock.el: * jka-compr.el: * log-edit.el: * lpr.el: * ls-lisp.el: * man.el: * menu-bar.el: * midnight.el: * mouse-sel.el: * mouse.el: * msb.el: * outline.el: * paren.el: * pcmpl-cvs.el: * pcmpl-gnu.el: * pcomplete.el: * pcvs-info.el: * pcvs-parse.el: * printing.el: * ps-mule.el: * ps-print.el: * replace.el: * ruler-mode.el: * saveplace.el: * sb-image.el: * scroll-bar.el: * sha1.el: * shadowfile.el: * shell.el: * sort.el: * speedbar.el: * strokes.el: * tempo.el: * term.el: * terminal.el: * time-stamp.el: * time.el: * tree-widget.el: * type-break.el: * vc-cvs.el: * vc-hg.el: * vc-mcvs.el: * vc-rcs.el: * vc-sccs.el: * vc.el: * view.el: * w32-vars.el: * whitespace.el: * wid-edit.el: Remove leading * from docstrings of defcustoms, deffaces, defconsts and defuns.
2008-12-03 05:48:14 +00:00
"A list specifying which buffers not to search (if not current).
Can contain both regexps matching buffer names (as strings) and major modes
lisp/*.el: Fix typos and other trivial doc fixes * lisp/allout-widgets.el (allout-widgets-auto-activation) (allout-current-decorated-p): * lisp/auth-source.el (auth-source-protocols): * lisp/autorevert.el (auto-revert-set-timer): * lisp/battery.el (battery-mode-line-limit): * lisp/calc/calcalg3.el (math-map-binop): * lisp/calendar/cal-dst.el (calendar-dst-find-startend): * lisp/calendar/cal-mayan.el (calendar-mayan-long-count-to-absolute): * lisp/calendar/calendar.el (calendar-date-echo-text) (calendar-generate-month, calendar-string-spread) (calendar-cursor-to-date, calendar-read, calendar-read-date) (calendar-mark-visible-date, calendar-dayname-on-or-before): * lisp/calendar/diary-lib.el (diary-ordinal-suffix): * lisp/cedet/ede/autoconf-edit.el (autoconf-new-program) (autoconf-find-last-macro, autoconf-parameter-strip): * lisp/cedet/ede/config.el (ede-target-with-config-build): * lisp/cedet/ede/linux.el (ede-linux--detect-architecture) (ede-linux--get-architecture): * lisp/cedet/semantic/complete.el (semantic-collector-calculate-cache) (semantic-displayer-abstract, semantic-displayer-point-position): * lisp/cedet/semantic/format.el (semantic-format-face-alist) (semantic-format-tag-short-doc): * lisp/cedet/semantic/fw.el (semantic-find-file-noselect): * lisp/cedet/semantic/idle.el (semantic-idle-scheduler-work-idle-time) (semantic-idle-breadcrumbs-display-function) (semantic-idle-breadcrumbs-format-tag-list-function): * lisp/cedet/semantic/lex.el (semantic-lex-map-types) (define-lex, define-lex-block-type-analyzer): * lisp/cedet/semantic/senator.el (senator-search-default-tag-filter): * lisp/cedet/semantic/symref.el (semantic-symref-result) (semantic-symref-hit-to-tag-via-db): * lisp/cedet/semantic/symref.el (semantic-symref-tool-baseclass): * lisp/cedet/semantic/tag.el (semantic-tag-new-variable) (semantic-tag-new-include, semantic-tag-new-package) (semantic-tag-set-faux, semantic-create-tag-proxy) (semantic-tag-function-parent) (semantic-tag-components-with-overlays): * lisp/cedet/srecode/cpp.el (srecode-cpp-namespaces) (srecode-semantic-handle-:c, srecode-semantic-apply-tag-to-dict): * lisp/cedet/srecode/dictionary.el (srecode-create-dictionary) (srecode-dictionary-add-entries, srecode-dictionary-lookup-name) (srecode-create-dictionaries-from-tags): * lisp/cmuscheme.el (scheme-compile-region): * lisp/color.el (color-lab-to-lch): * lisp/doc-view.el (doc-view-image-width) (doc-view-set-up-single-converter): * lisp/dynamic-setting.el (font-setting-change-default-font) (dynamic-setting-handle-config-changed-event): * lisp/elec-pair.el (electric-pair-text-pairs) (electric-pair-skip-whitespace-function) (electric-pair-string-bound-function): * lisp/emacs-lisp/avl-tree.el (avl-tree--del-balance) (avl-tree-member, avl-tree-mapcar, avl-tree-iter): * lisp/emacs-lisp/bytecomp.el (byte-compile-generate-call-tree): * lisp/emacs-lisp/checkdoc.el (checkdoc-autofix-flag) (checkdoc-spellcheck-documentation-flag, checkdoc-ispell) (checkdoc-ispell-current-buffer, checkdoc-ispell-interactive) (checkdoc-ispell-message-interactive) (checkdoc-ispell-message-text, checkdoc-ispell-start) (checkdoc-ispell-continue, checkdoc-ispell-comments) (checkdoc-ispell-defun): * lisp/emacs-lisp/cl-generic.el (cl--generic-search-method): * lisp/emacs-lisp/eieio-custom.el (eieio-read-customization-group): * lisp/emacs-lisp/lisp.el (forward-sexp, up-list): * lisp/emacs-lisp/package-x.el (package--archive-contents-from-file): * lisp/emacs-lisp/package.el (package-desc) (package--make-autoloads-and-stuff, package-hidden-regexps): * lisp/emacs-lisp/tcover-ses.el (ses-exercise-startup): * lisp/emacs-lisp/testcover.el (testcover-nohits) (testcover-1value): * lisp/epg.el (epg-receive-keys, epg-start-edit-key): * lisp/erc/erc-backend.el (erc-server-processing-p) (erc-split-line-length, erc-server-coding-system) (erc-server-send, erc-message): * lisp/erc/erc-button.el (erc-button-face, erc-button-alist) (erc-browse-emacswiki): * lisp/erc/erc-ezbounce.el (erc-ezbounce, erc-ezb-get-login): * lisp/erc/erc-fill.el (erc-fill-variable-maximum-indentation): * lisp/erc/erc-log.el (erc-current-logfile): * lisp/erc/erc-match.el (erc-log-match-format) (erc-text-matched-hook): * lisp/erc/erc-netsplit.el (erc-netsplit, erc-netsplit-debug): * lisp/erc/erc-networks.el (erc-server-alist) (erc-networks-alist, erc-current-network): * lisp/erc/erc-ring.el (erc-input-ring-index): * lisp/erc/erc-speedbar.el (erc-speedbar) (erc-speedbar-update-channel): * lisp/erc/erc-stamp.el (erc-timestamp-only-if-changed-flag): * lisp/erc/erc-track.el (erc-track-position-in-mode-line) (erc-track-remove-from-mode-line, erc-modified-channels-update) (erc-track-last-non-erc-buffer, erc-track-sort-by-importance) (erc-track-get-active-buffer): * lisp/erc/erc.el (erc-get-channel-user-list) (erc-echo-notice-hook, erc-echo-notice-always-hook) (erc-wash-quit-reason, erc-format-@nick): * lisp/ffap.el (ffap-latex-mode): * lisp/files.el (abort-if-file-too-large) (dir-locals--get-sort-score, buffer-stale--default-function): * lisp/filesets.el (filesets-tree-max-level, filesets-data) (filesets-update-pre010505): * lisp/gnus/gnus-agent.el (gnus-agent-flush-cache): * lisp/gnus/gnus-art.el (gnus-article-encrypt-protocol) (gnus-button-prefer-mid-or-mail): * lisp/gnus/gnus-cus.el (gnus-group-parameters): * lisp/gnus/gnus-demon.el (gnus-demon-handlers) (gnus-demon-run-callback): * lisp/gnus/gnus-dired.el (gnus-dired-print): * lisp/gnus/gnus-icalendar.el (gnus-icalendar-event-from-buffer): * lisp/gnus/gnus-range.el (gnus-range-normalize): * lisp/gnus/gnus-spec.el (gnus-pad-form): * lisp/gnus/gnus-srvr.el (gnus-server-agent, gnus-server-cloud) (gnus-server-opened, gnus-server-closed, gnus-server-denied) (gnus-server-offline): * lisp/gnus/gnus-sum.el (gnus-refer-thread-use-nnir) (gnus-refer-thread-limit-to-thread) (gnus-summary-limit-include-thread, gnus-summary-refer-thread) (gnus-summary-find-matching): * lisp/gnus/gnus-util.el (gnus-rescale-image): * lisp/gnus/gnus.el (gnus-summary-line-format, gnus-no-server): * lisp/gnus/mail-source.el (mail-source-incoming-file-prefix): * lisp/gnus/message.el (message-cite-reply-position) (message-cite-style-outlook, message-cite-style-thunderbird) (message-cite-style-gmail, message--send-mail-maybe-partially): * lisp/gnus/mm-extern.el (mm-inline-external-body): * lisp/gnus/mm-partial.el (mm-inline-partial): * lisp/gnus/mml-sec.el (mml-secure-message-sign) (mml-secure-message-sign-encrypt, mml-secure-message-encrypt): * lisp/gnus/mml2015.el (mml2015-epg-key-image) (mml2015-epg-key-image-to-string): * lisp/gnus/nndiary.el (nndiary-reminders, nndiary-get-new-mail): * lisp/gnus/nnheader.el (nnheader-directory-files-is-safe): * lisp/gnus/nnir.el (nnir-search-history) (nnir-imap-search-other, nnir-artlist-length) (nnir-artlist-article, nnir-artitem-group, nnir-artitem-number) (nnir-artitem-rsv, nnir-article-group, nnir-article-number) (nnir-article-rsv, nnir-article-ids, nnir-categorize) (nnir-retrieve-headers-override-function) (nnir-imap-default-search-key, nnir-hyrex-additional-switches) (gnus-group-make-nnir-group, nnir-run-namazu, nnir-read-parms) (nnir-read-parm, nnir-read-server-parm, nnir-search-thread): * lisp/gnus/nnmairix.el (nnmairix-default-group) (nnmairix-propagate-marks): * lisp/gnus/smime.el (smime-keys, smime-crl-check) (smime-verify-buffer, smime-noverify-buffer): * lisp/gnus/spam-report.el (spam-report-url-ping-mm-url): * lisp/gnus/spam.el (spam-spamassassin-positive-spam-flag-header) (spam-spamassassin-spam-status-header, spam-sa-learn-rebuild) (spam-classifications, spam-check-stat, spam-spamassassin-score): * lisp/help.el (describe-minor-mode-from-symbol): * lisp/hippie-exp.el (hippie-expand-ignore-buffers): * lisp/htmlfontify.el (hfy-optimizations, hfy-face-resolve-face) (hfy-begin-span): * lisp/ibuf-ext.el (ibuffer-update-saved-filters-format) (ibuffer-saved-filters, ibuffer-old-saved-filters-warning) (ibuffer-filtering-qualifiers, ibuffer-repair-saved-filters) (eval, ibuffer-unary-operand, file-extension, directory): * lisp/image-dired.el (image-dired-cmd-pngcrush-options): * lisp/image-mode.el (image-toggle-display): * lisp/international/ccl.el (ccl-compile-read-multibyte-character) (ccl-compile-write-multibyte-character): * lisp/international/kkc.el (kkc-save-init-file): * lisp/international/latin1-disp.el (latin1-display): * lisp/international/ogonek.el (ogonek-name-encoding-alist) (ogonek-information, ogonek-lookup-encoding) (ogonek-deprefixify-region): * lisp/isearch.el (isearch-filter-predicate) (isearch--momentary-message): * lisp/jsonrpc.el (jsonrpc-connection-send) (jsonrpc-process-connection, jsonrpc-shutdown) (jsonrpc--async-request-1): * lisp/language/tibet-util.el (tibetan-char-p): * lisp/mail/feedmail.el (feedmail-queue-use-send-time-for-date) (feedmail-last-chance-hook, feedmail-before-fcc-hook) (feedmail-send-it-immediately-wrapper, feedmail-find-eoh): * lisp/mail/hashcash.el (hashcash-generate-payment) (hashcash-generate-payment-async, hashcash-insert-payment) (hashcash-verify-payment): * lisp/mail/rmail.el (rmail-movemail-variant-in-use) (rmail-get-attr-value): * lisp/mail/rmailmm.el (rmail-mime-prefer-html, rmail-mime): * lisp/mail/rmailsum.el (rmail-summary-show-message): * lisp/mail/supercite.el (sc-raw-mode-toggle): * lisp/man.el (Man-start-calling): * lisp/mh-e/mh-acros.el (mh-do-at-event-location) (mh-iterate-on-messages-in-region, mh-iterate-on-range): * lisp/mh-e/mh-alias.el (mh-alias-system-aliases) (mh-alias-reload, mh-alias-ali) (mh-alias-canonicalize-suggestion, mh-alias-add-alias-to-file) (mh-alias-add-alias): * lisp/mouse.el (mouse-save-then-kill): * lisp/net/browse-url.el (browse-url-default-macosx-browser): * lisp/net/eudc.el (eudc-set, eudc-variable-protocol-value) (eudc-variable-server-value, eudc-update-variable) (eudc-expand-inline): * lisp/net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result): * lisp/net/eudcb-ldap.el (eudc-ldap-get-field-list): * lisp/net/pop3.el (pop3-list): * lisp/net/soap-client.el (soap-namespace-put) (soap-xs-parse-sequence, soap-parse-envelope): * lisp/net/soap-inspect.el (soap-inspect-xs-complex-type): * lisp/nxml/rng-xsd.el (rng-xsd-date-to-days): * lisp/org/ob-C.el (org-babel-prep-session:C) (org-babel-load-session:C): * lisp/org/ob-J.el (org-babel-execute:J): * lisp/org/ob-asymptote.el (org-babel-prep-session:asymptote): * lisp/org/ob-awk.el (org-babel-execute:awk): * lisp/org/ob-core.el (org-babel-process-file-name): * lisp/org/ob-ebnf.el (org-babel-execute:ebnf): * lisp/org/ob-forth.el (org-babel-execute:forth): * lisp/org/ob-fortran.el (org-babel-execute:fortran) (org-babel-prep-session:fortran, org-babel-load-session:fortran): * lisp/org/ob-groovy.el (org-babel-execute:groovy): * lisp/org/ob-io.el (org-babel-execute:io): * lisp/org/ob-js.el (org-babel-execute:js): * lisp/org/ob-lilypond.el (org-babel-default-header-args:lilypond) (org-babel-lilypond-compile-post-tangle) (org-babel-lilypond-display-pdf-post-tangle) (org-babel-lilypond-tangle) (org-babel-lilypond-execute-tangled-ly) (org-babel-lilypond-compile-lilyfile) (org-babel-lilypond-check-for-compile-error) (org-babel-lilypond-process-compile-error) (org-babel-lilypond-mark-error-line) (org-babel-lilypond-parse-error-line) (org-babel-lilypond-attempt-to-open-pdf) (org-babel-lilypond-attempt-to-play-midi) (org-babel-lilypond-switch-extension) (org-babel-lilypond-set-header-args): * lisp/org/ob-lua.el (org-babel-prep-session:lua): * lisp/org/ob-picolisp.el (org-babel-execute:picolisp): * lisp/org/ob-processing.el (org-babel-prep-session:processing): * lisp/org/ob-python.el (org-babel-prep-session:python): * lisp/org/ob-scheme.el (org-babel-scheme-capture-current-message) (org-babel-scheme-execute-with-geiser, org-babel-execute:scheme): * lisp/org/ob-shen.el (org-babel-execute:shen): * lisp/org/org-agenda.el (org-agenda-entry-types) (org-agenda-move-date-from-past-immediately-to-today) (org-agenda-time-grid, org-agenda-sorting-strategy) (org-agenda-filter-by-category, org-agenda-forward-block): * lisp/org/org-colview.el (org-columns--overlay-text): * lisp/org/org-faces.el (org-verbatim, org-cycle-level-faces): * lisp/org/org-indent.el (org-indent-set-line-properties): * lisp/org/org-macs.el (org-get-limited-outline-regexp): * lisp/org/org-mobile.el (org-mobile-files): * lisp/org/org.el (org-use-fast-todo-selection) (org-extend-today-until, org-use-property-inheritance) (org-refresh-effort-properties, org-open-at-point-global) (org-track-ordered-property-with-tag, org-shiftright): * lisp/org/ox-html.el (org-html-checkbox-type): * lisp/org/ox-man.el (org-man-source-highlight) (org-man-verse-block): * lisp/org/ox-publish.el (org-publish-sitemap-default): * lisp/outline.el (outline-head-from-level): * lisp/progmodes/dcl-mode.el (dcl-back-to-indentation-1) (dcl-calc-command-indent, dcl-indent-to): * lisp/progmodes/flymake.el (flymake-make-diagnostic) (flymake--overlays, flymake-diagnostic-functions) (flymake-diagnostic-types-alist, flymake--backend-state) (flymake-is-running, flymake--collect, flymake-mode): * lisp/progmodes/gdb-mi.el (gdb-threads-list, gdb, gdb-non-stop) (gdb-buffers, gdb-gud-context-call, gdb-jsonify-buffer): * lisp/progmodes/grep.el (grep-error-screen-columns): * lisp/progmodes/gud.el (gud-prev-expr): * lisp/progmodes/ps-mode.el (ps-mode, ps-mode-target-column) (ps-run-goto-error): * lisp/progmodes/python.el (python-eldoc-get-doc) (python-eldoc-function-timeout-permanent, python-eldoc-function): * lisp/shadowfile.el (shadow-make-group): * lisp/speedbar.el (speedbar-obj-do-check): * lisp/textmodes/flyspell.el (flyspell-auto-correct-previous-hook): * lisp/textmodes/reftex-cite.el (reftex-bib-or-thebib): * lisp/textmodes/reftex-index.el (reftex-index-goto-entry) (reftex-index-kill, reftex-index-undo): * lisp/textmodes/reftex-parse.el (reftex-context-substring): * lisp/textmodes/reftex.el (reftex-TeX-master-file): * lisp/textmodes/rst.el (rst-next-hdr, rst-toc) (rst-uncomment-region, rst-font-lock-extend-region-internal): * lisp/thumbs.el (thumbs-mode): * lisp/vc/ediff-util.el (ediff-restore-diff): * lisp/vc/pcvs-defs.el (cvs-cvsroot, cvs-force-dir-tag): * lisp/vc/vc-hg.el (vc-hg--ignore-patterns-valid-p): * lisp/wid-edit.el (widget-field-value-set, string): * lisp/x-dnd.el (x-dnd-version-from-flags) (x-dnd-more-than-3-from-flags): Assorted docfixes.
2019-09-20 22:27:53 +00:00
\(as atoms)."
:type '(repeat (choice regexp (symbol :tag "Major Mode"))))
(defcustom hippie-expand-only-buffers ()
* align.el: * allout.el: * apropos.el: * arc-mode.el: * autoinsert.el: * avoid.el: * battery.el: * bookmark.el: * buff-menu.el: * calculator.el: * chistory.el: * cmuscheme.el: * comint.el: * compare-w.el: * dabbrev.el: * delim-col.el: * desktop.el: * diff-mode.el: * diff.el: * dired-aux.el: * dired-x.el: * dired.el: * dos-vars.el: * ediff-diff.el: * ediff-help.el: * ediff-init.el: * ediff-merg.el: * ediff-mult.el: * ediff-ptch.el: * ediff-vers.el: * ediff-wind.el: * ediff.el: * emerge.el: * facemenu.el: * faces.el: * ffap.el: * filecache.el: * find-dired.el: * font-core.el: * font-lock.el: * forms.el: * fringe.el: * help-at-pt.el: * hippie-exp.el: * ido.el: * image-file.el: * imenu.el: * indent.el: * info.el: * isearchb.el: * iswitchb.el: * jit-lock.el: * jka-compr.el: * log-edit.el: * lpr.el: * ls-lisp.el: * man.el: * menu-bar.el: * midnight.el: * mouse-sel.el: * mouse.el: * msb.el: * outline.el: * paren.el: * pcmpl-cvs.el: * pcmpl-gnu.el: * pcomplete.el: * pcvs-info.el: * pcvs-parse.el: * printing.el: * ps-mule.el: * ps-print.el: * replace.el: * ruler-mode.el: * saveplace.el: * sb-image.el: * scroll-bar.el: * sha1.el: * shadowfile.el: * shell.el: * sort.el: * speedbar.el: * strokes.el: * tempo.el: * term.el: * terminal.el: * time-stamp.el: * time.el: * tree-widget.el: * type-break.el: * vc-cvs.el: * vc-hg.el: * vc-mcvs.el: * vc-rcs.el: * vc-sccs.el: * vc.el: * view.el: * w32-vars.el: * whitespace.el: * wid-edit.el: Remove leading * from docstrings of defcustoms, deffaces, defconsts and defuns.
2008-12-03 05:48:14 +00:00
"A list specifying the only buffers to search (in addition to current).
Can contain both regexps matching buffer names (as strings) and major modes
2001-12-20 18:59:32 +00:00
\(as atoms). If non-nil, this variable overrides the variable
`hippie-expand-ignore-buffers'."
:type '(repeat (choice regexp (symbol :tag "Major Mode"))))
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
;;;###autoload
1993-01-06 04:35:15 +00:00
(defun hippie-expand (arg)
"Try to expand text before point, using multiple methods.
The expansion functions in `hippie-expand-try-functions-list' are
tried in order, until a possible expansion is found. Repeated
application of `hippie-expand' inserts successively possible
2003-01-31 15:24:20 +00:00
expansions.
1993-01-06 04:35:15 +00:00
With a positive numeric argument, jumps directly to the ARG next
2003-01-31 15:24:20 +00:00
function in this list. With a negative argument or just \\[universal-argument],
undoes the expansion."
1993-01-06 04:35:15 +00:00
(interactive "P")
2003-01-31 15:24:20 +00:00
(if (or (not arg)
1993-01-06 04:35:15 +00:00
(and (integerp arg) (> arg 0)))
(let ((first (or (= he-num -1)
(not (equal this-command last-command)))))
(if first
(progn
(setq he-num -1)
(setq he-tried-table nil)))
(if arg
(if (not first) (he-reset-string))
(setq arg 0))
(let ((i (max (+ he-num arg) 0)))
(while (not (or (>= i (length hippie-expand-try-functions-list))
2003-01-31 15:24:20 +00:00
(apply (nth i hippie-expand-try-functions-list)
1993-01-06 04:35:15 +00:00
(list (= he-num i)))))
(setq i (1+ i)))
(setq he-num i))
(if (>= he-num (length hippie-expand-try-functions-list))
(progn
(setq he-num -1)
(if first
(message "No expansion found")
(message "No further expansions found"))
(ding))
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
(if (and hippie-expand-verbose
Do not call to `selected-window' where it is assumed by default. Affected functions are `window-minibuffer-p', `window-dedicated-p', `window-hscroll', `window-width', `window-height', `window-buffer', `window-frame', `window-start', `window-point', `next-window' and `window-display-table'. * abbrev.el (abbrev--default-expand): * bs.el (bs--show-with-configuration): * buff-menu.el (Buffer-menu-mouse-select): * calc/calc.el (calc): * calendar/calendar.el (calendar-generate-window): * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries) (diary-make-entry): * comint.el (send-invisible, comint-dynamic-complete-filename) (comint-dynamic-simple-complete, comint-dynamic-list-completions): * completion.el (complete): * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list): * disp-table.el (describe-current-display-table): * doc-view.el (doc-view-insert-image): * ebuff-menu.el (Electric-buffer-menu-mouse-select): * ehelp.el (with-electric-help): * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer): * emacs-lisp/helper.el (Helper-help-scroller): * emulation/cua-base.el (cua--post-command-handler-1): * eshell/esh-mode.el (eshell-output-filter): * ffap.el (ffap-gnus-wrapper): * help-macro.el (make-help-screen): * hilit-chg.el (highlight-compare-buffers): * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible): * hl-line.el (global-hl-line-highlight): * icomplete.el (icomplete-simple-completing-p): * isearch.el (isearch-done): * jit-lock.el (jit-lock-stealth-fontify): * mail/rmailsum.el (rmail-summary-scroll-msg-up): * lisp/mouse-drag.el (mouse-drag-should-do-col-scrolling): * mpc.el (mpc-tagbrowser, mpc): * net/rcirc.el (rcirc-any-buffer): * play/gomoku.el (gomoku-max-width, gomoku-max-height): * play/landmark.el (landmark-max-width, landmark-max-height): * play/zone.el (zone): * progmodes/compile.el (compilation-goto-locus): * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern): * progmodes/etags.el (find-tag-other-window): * progmodes/fortran.el (fortran-column-ruler): * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe): * progmodes/verilog-mode.el (verilog-point-text): * reposition.el (reposition-window): * rot13.el (toggle-rot13-mode): * server.el (server-switch-buffer): * shell.el (shell-dynamic-complete-command) (shell-dynamic-complete-environment-variable): * simple.el (insert-buffer, set-selective-display) (delete-completion-window): * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly) (speedbar-recenter): * startup.el (fancy-splash-head): * textmodes/ispell.el (ispell-command-loop): * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region): * tutorial.el (help-with-tutorial): * vc/add-log.el (add-change-log-entry): * vc/compare-w.el (compare-windows): * vc/ediff-help.el (ediff-indent-help-message): * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region): * vc/ediff-wind.el (ediff-skip-unsuitable-frames) (ediff-setup-control-frame): * vc/emerge.el (emerge-position-region): * vc/pcvs-util.el (cvs-bury-buffer): * window.el (walk-windows, mouse-autoselect-window-select): * winner.el (winner-set-conf, winner-undo): Related users changed.
2013-08-05 14:26:57 +00:00
(not (window-minibuffer-p)))
(message "Using %s"
(nth he-num hippie-expand-try-functions-list)))))
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(if (and (>= he-num 0)
(eq (marker-buffer he-string-beg) (current-buffer)))
1993-01-06 04:35:15 +00:00
(progn
(setq he-num -1)
(he-reset-string)
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
(if (and hippie-expand-verbose
Do not call to `selected-window' where it is assumed by default. Affected functions are `window-minibuffer-p', `window-dedicated-p', `window-hscroll', `window-width', `window-height', `window-buffer', `window-frame', `window-start', `window-point', `next-window' and `window-display-table'. * abbrev.el (abbrev--default-expand): * bs.el (bs--show-with-configuration): * buff-menu.el (Buffer-menu-mouse-select): * calc/calc.el (calc): * calendar/calendar.el (calendar-generate-window): * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries) (diary-make-entry): * comint.el (send-invisible, comint-dynamic-complete-filename) (comint-dynamic-simple-complete, comint-dynamic-list-completions): * completion.el (complete): * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list): * disp-table.el (describe-current-display-table): * doc-view.el (doc-view-insert-image): * ebuff-menu.el (Electric-buffer-menu-mouse-select): * ehelp.el (with-electric-help): * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer): * emacs-lisp/helper.el (Helper-help-scroller): * emulation/cua-base.el (cua--post-command-handler-1): * eshell/esh-mode.el (eshell-output-filter): * ffap.el (ffap-gnus-wrapper): * help-macro.el (make-help-screen): * hilit-chg.el (highlight-compare-buffers): * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible): * hl-line.el (global-hl-line-highlight): * icomplete.el (icomplete-simple-completing-p): * isearch.el (isearch-done): * jit-lock.el (jit-lock-stealth-fontify): * mail/rmailsum.el (rmail-summary-scroll-msg-up): * lisp/mouse-drag.el (mouse-drag-should-do-col-scrolling): * mpc.el (mpc-tagbrowser, mpc): * net/rcirc.el (rcirc-any-buffer): * play/gomoku.el (gomoku-max-width, gomoku-max-height): * play/landmark.el (landmark-max-width, landmark-max-height): * play/zone.el (zone): * progmodes/compile.el (compilation-goto-locus): * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern): * progmodes/etags.el (find-tag-other-window): * progmodes/fortran.el (fortran-column-ruler): * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe): * progmodes/verilog-mode.el (verilog-point-text): * reposition.el (reposition-window): * rot13.el (toggle-rot13-mode): * server.el (server-switch-buffer): * shell.el (shell-dynamic-complete-command) (shell-dynamic-complete-environment-variable): * simple.el (insert-buffer, set-selective-display) (delete-completion-window): * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly) (speedbar-recenter): * startup.el (fancy-splash-head): * textmodes/ispell.el (ispell-command-loop): * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region): * tutorial.el (help-with-tutorial): * vc/add-log.el (add-change-log-entry): * vc/compare-w.el (compare-windows): * vc/ediff-help.el (ediff-indent-help-message): * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region): * vc/ediff-wind.el (ediff-skip-unsuitable-frames) (ediff-setup-control-frame): * vc/emerge.el (emerge-position-region): * vc/pcvs-util.el (cvs-bury-buffer): * window.el (walk-windows, mouse-autoselect-window-select): * winner.el (winner-set-conf, winner-undo): Related users changed.
2013-08-05 14:26:57 +00:00
(not (window-minibuffer-p)))
1993-01-06 04:35:15 +00:00
(message "Undoing expansions"))))))
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
1993-01-06 04:35:15 +00:00
;; Initializes the region to expand (to between BEG and END).
(defun he-init-string (beg end)
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
(set-marker he-string-beg beg)
(set-marker he-string-end end)
(setq he-search-string (buffer-substring-no-properties beg end)))
1993-01-06 04:35:15 +00:00
;; Resets the expanded region to its original contents.
(defun he-reset-string ()
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
(let ((newpos (point-marker)))
(goto-char he-string-beg)
(insert he-search-string)
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(delete-region (point) he-string-end)
(goto-char newpos)))
1993-01-06 04:35:15 +00:00
;; Substitutes an expansion STR into the correct region (the region
2003-01-31 15:24:20 +00:00
;; initialized with `he-init-string').
1993-01-06 04:35:15 +00:00
;; An optional argument TRANS-CASE means that it is ok to transfer case
;; from the abbreviation to the expansion if that is possible, and is
;; enabled in the buffer.
(defun he-substitute-string (str &optional trans-case)
(let ((trans-case (and trans-case
case-replace
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
case-fold-search))
(newpos (point-marker))
(subst ()))
1993-01-06 04:35:15 +00:00
(goto-char he-string-beg)
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(setq subst (if trans-case (he-transfer-case he-search-string str) str))
(setq he-tried-table (cons subst he-tried-table))
(insert subst)
(delete-region (point) he-string-end)
(goto-char newpos)))
(defun he-capitalize-first (str)
(save-match-data
(if (string-match "\\Sw*\\(\\sw\\).*" str)
(let ((res (downcase str))
(no (match-beginning 1)))
(aset res no (upcase (aref str no)))
res)
str)))
1993-01-06 04:35:15 +00:00
(defun he-ordinary-case-p (str)
(or (string= str (downcase str))
(string= str (upcase str))
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(string= str (capitalize str))
(string= str (he-capitalize-first str))))
(defun he-transfer-case (from-str to-str)
(cond ((string= from-str (substring to-str 0 (min (length from-str)
(length to-str))))
to-str)
((not (he-ordinary-case-p to-str))
to-str)
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
((string= from-str (downcase from-str))
(downcase to-str))
((string= from-str (upcase from-str))
(upcase to-str))
((string= from-str (he-capitalize-first from-str))
(he-capitalize-first to-str))
((string= from-str (capitalize from-str))
(capitalize to-str))
(t
to-str)))
1993-01-06 04:35:15 +00:00
;; Check if STR is a member of LST.
2001-12-20 18:59:32 +00:00
;; Transform to the final case if optional TRANS-CASE is non-nil.
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(defun he-string-member (str lst &optional trans-case)
(if str
(member (if (and trans-case
case-replace
case-fold-search)
(he-transfer-case he-search-string str)
str)
lst)))
1993-01-06 04:35:15 +00:00
;; Check if current buffer matches any atom or regexp in LST.
2011-11-19 09:18:31 +00:00
;; Atoms are interpreted as major modes, strings as regexps matching the name.
(defun he-buffer-member (lst)
(or (memq major-mode lst)
(progn
(while (and lst
(or (not (stringp (car lst)))
(not (string-match (car lst) (buffer-name)))))
(setq lst (cdr lst)))
lst)))
1993-01-06 04:35:15 +00:00
;; For the real hippie-expand enthusiast: A macro that makes it
;; possible to use many functions like hippie-expand, but with
;; different try-functions-lists.
;; Usage is for example:
;; (fset 'my-complete-file (make-hippie-expand-function
;; '(try-complete-file-name-partially
;; try-complete-file-name)))
;; (fset 'my-complete-line (make-hippie-expand-function
;; '(try-expand-line
;; try-expand-line-all-buffers)))
2003-01-31 15:24:20 +00:00
;;
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
;;;###autoload
(defun make-hippie-expand-function (try-list &optional verbose)
1993-01-06 04:35:15 +00:00
"Construct a function similar to `hippie-expand'.
Make it use the expansion functions in TRY-LIST. An optional second
argument VERBOSE non-nil makes the function verbose."
(lambda (arg)
(:documentation
(concat
"Try to expand text before point, using the following functions: \n"
(mapconcat #'prin1-to-string try-list ", ")))
(interactive "P")
(let ((hippie-expand-try-functions-list try-list)
(hippie-expand-verbose verbose))
(hippie-expand arg))))
1993-01-06 04:35:15 +00:00
;;; Here follows the try-functions and their requisites:
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
1993-01-06 04:35:15 +00:00
(defun try-complete-file-name (old)
"Try to complete text as a file name.
The argument OLD has to be nil the first call of this function, and t
for subsequent calls (for further possible completions of the same
string). It returns t if a new completion is found, nil otherwise."
(if (not old)
2003-01-31 15:24:20 +00:00
(progn
1993-01-06 04:35:15 +00:00
(he-init-string (he-file-name-beg) (point))
* bitmaps/README: * xfns.c: * termcap.c: * term.c: * syswait.h: * systty.h: * systime.h: * syssignal.h: * sysdep.c: * process.h: * process.c: * print.c: * ndir.h: * lread.c: * keyboard.c: * getpagesize.h: * floatfns.c: * fileio.c: * emacs.c: * doc.c: * dispnew.c: * dired.c: * data.c: * callproc.c: * buffer.c: * README: * Makefile.in: * s/template.h: * s/msdos.h: * m/vax.h: Remove VMS support. * s/vms.h: * vlimit.h: * uaf.h: * temacs.opt: * param.h: * ioctl.h: Remove file. * descrip.mms: * compile.com: Remove file. * Create.c: Remove VMS support. * message.el (Module): * gnus-start.el (Module): * gnus-registry.el (Module): * textmodes/texinfmt.el: * nxml/nxml-enc.el: * mail/feedmail.el: * international/mule.el: * international/latexenc.el: * emulation/viper-util.el: * emulation/viper-init.el: * emulation/viper-ex.el: * emacs-lisp/bytecomp.el: * version.el: * subr.el: * startup.el: * sort.el: * shadowfile.el: * recentf.el: * printing.el: * paths.el: * minibuffer.el: * ls-lisp.el: * loadup.el: * hippie-exp.el: * finder.el: * files.el: * ediff-util.el: * ediff-ptch.el: * ediff-init.el: * ediff-diff.el: * dired.el: * dired-aux.el: * cus-edit.el: * bindings.el: * arc-mode.el: * add-log.el: Remove VMS support. * obsolete/vmsproc.el: * obsolete/vms-pmail.el: * obsolete/vms-patch.el: Remove file. * etags.c: * emacsclient.c: Remove VMS support. * termcap.src: Remove file. * README: * PROBLEMS: * MACHINES: Remove VMS info. * ediff.texi: Remove VMS support. * os.texi: * intro.texi: * files.texi: Remove VMS support. * emacs.texi: Remove VMS support. * make-dist: * README: Remove VMS support. * vms: Remove directory.
2008-07-31 05:33:56 +00:00
(let ((name-part (file-name-nondirectory he-search-string))
(dir-part (expand-file-name (or (file-name-directory
he-search-string)
""))))
1993-01-06 04:35:15 +00:00
(if (not (he-string-member name-part he-tried-table))
(setq he-tried-table (cons name-part he-tried-table)))
(if (and (not (equal he-search-string ""))
* bitmaps/README: * xfns.c: * termcap.c: * term.c: * syswait.h: * systty.h: * systime.h: * syssignal.h: * sysdep.c: * process.h: * process.c: * print.c: * ndir.h: * lread.c: * keyboard.c: * getpagesize.h: * floatfns.c: * fileio.c: * emacs.c: * doc.c: * dispnew.c: * dired.c: * data.c: * callproc.c: * buffer.c: * README: * Makefile.in: * s/template.h: * s/msdos.h: * m/vax.h: Remove VMS support. * s/vms.h: * vlimit.h: * uaf.h: * temacs.opt: * param.h: * ioctl.h: Remove file. * descrip.mms: * compile.com: Remove file. * Create.c: Remove VMS support. * message.el (Module): * gnus-start.el (Module): * gnus-registry.el (Module): * textmodes/texinfmt.el: * nxml/nxml-enc.el: * mail/feedmail.el: * international/mule.el: * international/latexenc.el: * emulation/viper-util.el: * emulation/viper-init.el: * emulation/viper-ex.el: * emacs-lisp/bytecomp.el: * version.el: * subr.el: * startup.el: * sort.el: * shadowfile.el: * recentf.el: * printing.el: * paths.el: * minibuffer.el: * ls-lisp.el: * loadup.el: * hippie-exp.el: * finder.el: * files.el: * ediff-util.el: * ediff-ptch.el: * ediff-init.el: * ediff-diff.el: * dired.el: * dired-aux.el: * cus-edit.el: * bindings.el: * arc-mode.el: * add-log.el: Remove VMS support. * obsolete/vmsproc.el: * obsolete/vms-pmail.el: * obsolete/vms-patch.el: Remove file. * etags.c: * emacsclient.c: Remove VMS support. * termcap.src: Remove file. * README: * PROBLEMS: * MACHINES: Remove VMS info. * ediff.texi: Remove VMS support. * os.texi: * intro.texi: * files.texi: Remove VMS support. * emacs.texi: Remove VMS support. * make-dist: * README: Remove VMS support. * vms: Remove directory.
2008-07-31 05:33:56 +00:00
(file-directory-p dir-part))
2003-01-31 15:24:20 +00:00
(setq he-expand-list (sort (file-name-all-completions
1993-01-06 04:35:15 +00:00
name-part
dir-part)
#'string-lessp))
1993-01-06 04:35:15 +00:00
(setq he-expand-list ())))))
(while (and he-expand-list
(he-string-member (car he-expand-list) he-tried-table))
(setq he-expand-list (cdr he-expand-list)))
(if (null he-expand-list)
(progn
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(if old (he-reset-string))
1993-01-06 04:35:15 +00:00
())
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(let ((filename (he-concat-directory-file-name
* bitmaps/README: * xfns.c: * termcap.c: * term.c: * syswait.h: * systty.h: * systime.h: * syssignal.h: * sysdep.c: * process.h: * process.c: * print.c: * ndir.h: * lread.c: * keyboard.c: * getpagesize.h: * floatfns.c: * fileio.c: * emacs.c: * doc.c: * dispnew.c: * dired.c: * data.c: * callproc.c: * buffer.c: * README: * Makefile.in: * s/template.h: * s/msdos.h: * m/vax.h: Remove VMS support. * s/vms.h: * vlimit.h: * uaf.h: * temacs.opt: * param.h: * ioctl.h: Remove file. * descrip.mms: * compile.com: Remove file. * Create.c: Remove VMS support. * message.el (Module): * gnus-start.el (Module): * gnus-registry.el (Module): * textmodes/texinfmt.el: * nxml/nxml-enc.el: * mail/feedmail.el: * international/mule.el: * international/latexenc.el: * emulation/viper-util.el: * emulation/viper-init.el: * emulation/viper-ex.el: * emacs-lisp/bytecomp.el: * version.el: * subr.el: * startup.el: * sort.el: * shadowfile.el: * recentf.el: * printing.el: * paths.el: * minibuffer.el: * ls-lisp.el: * loadup.el: * hippie-exp.el: * finder.el: * files.el: * ediff-util.el: * ediff-ptch.el: * ediff-init.el: * ediff-diff.el: * dired.el: * dired-aux.el: * cus-edit.el: * bindings.el: * arc-mode.el: * add-log.el: Remove VMS support. * obsolete/vmsproc.el: * obsolete/vms-pmail.el: * obsolete/vms-patch.el: Remove file. * etags.c: * emacsclient.c: Remove VMS support. * termcap.src: Remove file. * README: * PROBLEMS: * MACHINES: Remove VMS info. * ediff.texi: Remove VMS support. * os.texi: * intro.texi: * files.texi: Remove VMS support. * emacs.texi: Remove VMS support. * make-dist: * README: Remove VMS support. * vms: Remove directory.
2008-07-31 05:33:56 +00:00
(file-name-directory he-search-string)
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(car he-expand-list))))
1993-01-06 04:35:15 +00:00
(he-substitute-string filename)
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(setq he-tried-table (cons (car he-expand-list) (cdr he-tried-table)))
1993-01-06 04:35:15 +00:00
(setq he-expand-list (cdr he-expand-list))
t)))
(defun try-complete-file-name-partially (old)
"Try to complete text as a file name, as many characters as unique.
The argument OLD has to be nil the first call of this function. It
2003-01-31 15:24:20 +00:00
returns t if a unique, possibly partial, completion is found, nil
1993-01-06 04:35:15 +00:00
otherwise."
(let ((expansion ()))
(if (not old)
2003-01-31 15:24:20 +00:00
(progn
1993-01-06 04:35:15 +00:00
(he-init-string (he-file-name-beg) (point))
* bitmaps/README: * xfns.c: * termcap.c: * term.c: * syswait.h: * systty.h: * systime.h: * syssignal.h: * sysdep.c: * process.h: * process.c: * print.c: * ndir.h: * lread.c: * keyboard.c: * getpagesize.h: * floatfns.c: * fileio.c: * emacs.c: * doc.c: * dispnew.c: * dired.c: * data.c: * callproc.c: * buffer.c: * README: * Makefile.in: * s/template.h: * s/msdos.h: * m/vax.h: Remove VMS support. * s/vms.h: * vlimit.h: * uaf.h: * temacs.opt: * param.h: * ioctl.h: Remove file. * descrip.mms: * compile.com: Remove file. * Create.c: Remove VMS support. * message.el (Module): * gnus-start.el (Module): * gnus-registry.el (Module): * textmodes/texinfmt.el: * nxml/nxml-enc.el: * mail/feedmail.el: * international/mule.el: * international/latexenc.el: * emulation/viper-util.el: * emulation/viper-init.el: * emulation/viper-ex.el: * emacs-lisp/bytecomp.el: * version.el: * subr.el: * startup.el: * sort.el: * shadowfile.el: * recentf.el: * printing.el: * paths.el: * minibuffer.el: * ls-lisp.el: * loadup.el: * hippie-exp.el: * finder.el: * files.el: * ediff-util.el: * ediff-ptch.el: * ediff-init.el: * ediff-diff.el: * dired.el: * dired-aux.el: * cus-edit.el: * bindings.el: * arc-mode.el: * add-log.el: Remove VMS support. * obsolete/vmsproc.el: * obsolete/vms-pmail.el: * obsolete/vms-patch.el: Remove file. * etags.c: * emacsclient.c: Remove VMS support. * termcap.src: Remove file. * README: * PROBLEMS: * MACHINES: Remove VMS info. * ediff.texi: Remove VMS support. * os.texi: * intro.texi: * files.texi: Remove VMS support. * emacs.texi: Remove VMS support. * make-dist: * README: Remove VMS support. * vms: Remove directory.
2008-07-31 05:33:56 +00:00
(let ((name-part (file-name-nondirectory he-search-string))
(dir-part (expand-file-name (or (file-name-directory
1993-01-06 04:35:15 +00:00
he-search-string) ""))))
(if (and (not (equal he-search-string ""))
* bitmaps/README: * xfns.c: * termcap.c: * term.c: * syswait.h: * systty.h: * systime.h: * syssignal.h: * sysdep.c: * process.h: * process.c: * print.c: * ndir.h: * lread.c: * keyboard.c: * getpagesize.h: * floatfns.c: * fileio.c: * emacs.c: * doc.c: * dispnew.c: * dired.c: * data.c: * callproc.c: * buffer.c: * README: * Makefile.in: * s/template.h: * s/msdos.h: * m/vax.h: Remove VMS support. * s/vms.h: * vlimit.h: * uaf.h: * temacs.opt: * param.h: * ioctl.h: Remove file. * descrip.mms: * compile.com: Remove file. * Create.c: Remove VMS support. * message.el (Module): * gnus-start.el (Module): * gnus-registry.el (Module): * textmodes/texinfmt.el: * nxml/nxml-enc.el: * mail/feedmail.el: * international/mule.el: * international/latexenc.el: * emulation/viper-util.el: * emulation/viper-init.el: * emulation/viper-ex.el: * emacs-lisp/bytecomp.el: * version.el: * subr.el: * startup.el: * sort.el: * shadowfile.el: * recentf.el: * printing.el: * paths.el: * minibuffer.el: * ls-lisp.el: * loadup.el: * hippie-exp.el: * finder.el: * files.el: * ediff-util.el: * ediff-ptch.el: * ediff-init.el: * ediff-diff.el: * dired.el: * dired-aux.el: * cus-edit.el: * bindings.el: * arc-mode.el: * add-log.el: Remove VMS support. * obsolete/vmsproc.el: * obsolete/vms-pmail.el: * obsolete/vms-patch.el: Remove file. * etags.c: * emacsclient.c: Remove VMS support. * termcap.src: Remove file. * README: * PROBLEMS: * MACHINES: Remove VMS info. * ediff.texi: Remove VMS support. * os.texi: * intro.texi: * files.texi: Remove VMS support. * emacs.texi: Remove VMS support. * make-dist: * README: Remove VMS support. * vms: Remove directory.
2008-07-31 05:33:56 +00:00
(file-directory-p dir-part))
1993-01-06 04:35:15 +00:00
(setq expansion (file-name-completion name-part
dir-part)))
(if (or (eq expansion t)
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(string= expansion name-part)
(he-string-member expansion he-tried-table))
1993-01-06 04:35:15 +00:00
(setq expansion ())))))
(if (not expansion)
(progn
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(if old (he-reset-string))
1993-01-06 04:35:15 +00:00
())
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(let ((filename (he-concat-directory-file-name
* bitmaps/README: * xfns.c: * termcap.c: * term.c: * syswait.h: * systty.h: * systime.h: * syssignal.h: * sysdep.c: * process.h: * process.c: * print.c: * ndir.h: * lread.c: * keyboard.c: * getpagesize.h: * floatfns.c: * fileio.c: * emacs.c: * doc.c: * dispnew.c: * dired.c: * data.c: * callproc.c: * buffer.c: * README: * Makefile.in: * s/template.h: * s/msdos.h: * m/vax.h: Remove VMS support. * s/vms.h: * vlimit.h: * uaf.h: * temacs.opt: * param.h: * ioctl.h: Remove file. * descrip.mms: * compile.com: Remove file. * Create.c: Remove VMS support. * message.el (Module): * gnus-start.el (Module): * gnus-registry.el (Module): * textmodes/texinfmt.el: * nxml/nxml-enc.el: * mail/feedmail.el: * international/mule.el: * international/latexenc.el: * emulation/viper-util.el: * emulation/viper-init.el: * emulation/viper-ex.el: * emacs-lisp/bytecomp.el: * version.el: * subr.el: * startup.el: * sort.el: * shadowfile.el: * recentf.el: * printing.el: * paths.el: * minibuffer.el: * ls-lisp.el: * loadup.el: * hippie-exp.el: * finder.el: * files.el: * ediff-util.el: * ediff-ptch.el: * ediff-init.el: * ediff-diff.el: * dired.el: * dired-aux.el: * cus-edit.el: * bindings.el: * arc-mode.el: * add-log.el: Remove VMS support. * obsolete/vmsproc.el: * obsolete/vms-pmail.el: * obsolete/vms-patch.el: Remove file. * etags.c: * emacsclient.c: Remove VMS support. * termcap.src: Remove file. * README: * PROBLEMS: * MACHINES: Remove VMS info. * ediff.texi: Remove VMS support. * os.texi: * intro.texi: * files.texi: Remove VMS support. * emacs.texi: Remove VMS support. * make-dist: * README: Remove VMS support. * vms: Remove directory.
2008-07-31 05:33:56 +00:00
(file-name-directory he-search-string)
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
expansion)))
1993-01-06 04:35:15 +00:00
(he-substitute-string filename)
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(setq he-tried-table (cons expansion (cdr he-tried-table)))
1993-01-06 04:35:15 +00:00
t))))
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(defvar he-file-name-chars
* bitmaps/README: * xfns.c: * termcap.c: * term.c: * syswait.h: * systty.h: * systime.h: * syssignal.h: * sysdep.c: * process.h: * process.c: * print.c: * ndir.h: * lread.c: * keyboard.c: * getpagesize.h: * floatfns.c: * fileio.c: * emacs.c: * doc.c: * dispnew.c: * dired.c: * data.c: * callproc.c: * buffer.c: * README: * Makefile.in: * s/template.h: * s/msdos.h: * m/vax.h: Remove VMS support. * s/vms.h: * vlimit.h: * uaf.h: * temacs.opt: * param.h: * ioctl.h: Remove file. * descrip.mms: * compile.com: Remove file. * Create.c: Remove VMS support. * message.el (Module): * gnus-start.el (Module): * gnus-registry.el (Module): * textmodes/texinfmt.el: * nxml/nxml-enc.el: * mail/feedmail.el: * international/mule.el: * international/latexenc.el: * emulation/viper-util.el: * emulation/viper-init.el: * emulation/viper-ex.el: * emacs-lisp/bytecomp.el: * version.el: * subr.el: * startup.el: * sort.el: * shadowfile.el: * recentf.el: * printing.el: * paths.el: * minibuffer.el: * ls-lisp.el: * loadup.el: * hippie-exp.el: * finder.el: * files.el: * ediff-util.el: * ediff-ptch.el: * ediff-init.el: * ediff-diff.el: * dired.el: * dired-aux.el: * cus-edit.el: * bindings.el: * arc-mode.el: * add-log.el: Remove VMS support. * obsolete/vmsproc.el: * obsolete/vms-pmail.el: * obsolete/vms-patch.el: Remove file. * etags.c: * emacsclient.c: Remove VMS support. * termcap.src: Remove file. * README: * PROBLEMS: * MACHINES: Remove VMS info. * ediff.texi: Remove VMS support. * os.texi: * intro.texi: * files.texi: Remove VMS support. * emacs.texi: Remove VMS support. * make-dist: * README: Remove VMS support. * vms: Remove directory.
2008-07-31 05:33:56 +00:00
(cond ((memq system-type '(ms-dos windows-nt cygwin))
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
"-a-zA-Z0-9_/.,~^#$+=:\\\\")
(t ;; More strange file formats ?
"-a-zA-Z0-9_/.,~^#$+="))
"Characters that are considered part of the file name to expand.")
1993-01-06 04:35:15 +00:00
(defun he-file-name-beg ()
(let ((op (point)))
(save-excursion
(skip-chars-backward he-file-name-chars)
(if (> (skip-syntax-backward "w") 0) ;; No words with non-file chars
op
(point)))))
1993-01-06 04:35:15 +00:00
* bitmaps/README: * xfns.c: * termcap.c: * term.c: * syswait.h: * systty.h: * systime.h: * syssignal.h: * sysdep.c: * process.h: * process.c: * print.c: * ndir.h: * lread.c: * keyboard.c: * getpagesize.h: * floatfns.c: * fileio.c: * emacs.c: * doc.c: * dispnew.c: * dired.c: * data.c: * callproc.c: * buffer.c: * README: * Makefile.in: * s/template.h: * s/msdos.h: * m/vax.h: Remove VMS support. * s/vms.h: * vlimit.h: * uaf.h: * temacs.opt: * param.h: * ioctl.h: Remove file. * descrip.mms: * compile.com: Remove file. * Create.c: Remove VMS support. * message.el (Module): * gnus-start.el (Module): * gnus-registry.el (Module): * textmodes/texinfmt.el: * nxml/nxml-enc.el: * mail/feedmail.el: * international/mule.el: * international/latexenc.el: * emulation/viper-util.el: * emulation/viper-init.el: * emulation/viper-ex.el: * emacs-lisp/bytecomp.el: * version.el: * subr.el: * startup.el: * sort.el: * shadowfile.el: * recentf.el: * printing.el: * paths.el: * minibuffer.el: * ls-lisp.el: * loadup.el: * hippie-exp.el: * finder.el: * files.el: * ediff-util.el: * ediff-ptch.el: * ediff-init.el: * ediff-diff.el: * dired.el: * dired-aux.el: * cus-edit.el: * bindings.el: * arc-mode.el: * add-log.el: Remove VMS support. * obsolete/vmsproc.el: * obsolete/vms-pmail.el: * obsolete/vms-patch.el: Remove file. * etags.c: * emacsclient.c: Remove VMS support. * termcap.src: Remove file. * README: * PROBLEMS: * MACHINES: Remove VMS info. * ediff.texi: Remove VMS support. * os.texi: * intro.texi: * files.texi: Remove VMS support. * emacs.texi: Remove VMS support. * make-dist: * README: Remove VMS support. * vms: Remove directory.
2008-07-31 05:33:56 +00:00
;; Thanks go to David Hughes <ukchugd@ukpmr.cs.philips.nl> who
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
;; helped to make it work on PC.
(defun he-concat-directory-file-name (dir-part name-part)
"Try to slam together two parts of a file specification, system dependently."
(cond ((null dir-part) name-part)
((eq system-type 'ms-dos)
Use string-search instead of string-match[-p] `string-search` is easier to understand, less error-prone, much faster, does not pollute the regexp cache, and does not mutate global state. Use it where applicable and obviously safe (erring on the conservative side). * admin/authors.el (authors-canonical-file-name) (authors-scan-change-log): * lisp/apropos.el (apropos-command) (apropos-documentation-property, apropos-symbols-internal): * lisp/arc-mode.el (archive-arc-summarize) (archive-zoo-summarize): * lisp/calc/calc-aent.el (math-read-factor): * lisp/calc/calc-ext.el (math-read-big-expr) (math-format-nice-expr, math-format-number-fancy): * lisp/calc/calc-forms.el (math-read-angle-brackets): * lisp/calc/calc-graph.el (calc-graph-set-range): * lisp/calc/calc-keypd.el (calc-keypad-press): * lisp/calc/calc-lang.el (tex, latex, math-read-big-rec): * lisp/calc/calc-prog.el (calc-fix-token-name) (calc-user-define-permanent, math-define-exp): * lisp/calc/calc.el (calc-record, calcDigit-key) (calc-count-lines): * lisp/calc/calcalg2.el (calc-solve-for, calc-poly-roots) (math-do-integral): * lisp/calc/calcalg3.el (calc-find-root, calc-find-minimum) (calc-get-fit-variables): * lisp/cedet/ede/speedbar.el (ede-tag-expand): * lisp/cedet/semantic/java.el (semantic-java-expand-tag): * lisp/cedet/semantic/sb.el (semantic-sb-show-extra) (semantic-sb-expand-group): * lisp/cedet/semantic/wisent/python.el (semantic-python-instance-variable-p): * lisp/cus-edit.el (get): * lisp/descr-text.el (describe-text-sexp): * lisp/dired-aux.el (dired-compress-file): * lisp/dired-x.el (dired-make-relative-symlink): * lisp/dired.el (dired-glob-regexp): * lisp/dos-fns.el (dos-convert-standard-filename, dos-8+3-filename): * lisp/edmacro.el (edmacro-format-keys): * lisp/emacs-lisp/eieio-opt.el (eieio-sb-expand): * lisp/emacs-lisp/eieio-speedbar.el (eieio-speedbar-object-expand): * lisp/emacs-lisp/lisp-mnt.el (lm-keywords-list): * lisp/emacs-lisp/warnings.el (display-warning): * lisp/emulation/viper-ex.el (viper-ex-read-file-name) (ex-print-display-lines): * lisp/env.el (read-envvar-name, setenv): * lisp/epa-mail.el (epa-mail-encrypt): * lisp/epg.el (epg--start): * lisp/erc/erc-backend.el (erc-parse-server-response): * lisp/erc/erc-dcc.el (erc-dcc-member): * lisp/erc/erc-speedbar.el (erc-speedbar-expand-server) (erc-speedbar-expand-channel, erc-speedbar-expand-user): * lisp/erc/erc.el (erc-send-input): * lisp/eshell/em-glob.el (eshell-glob-entries): * lisp/eshell/esh-proc.el (eshell-needs-pipe-p): * lisp/eshell/esh-util.el (eshell-convert): * lisp/eshell/esh-var.el (eshell-envvar-names): * lisp/faces.el (x-resolve-font-name): * lisp/ffap.el (ffap-file-at-point): * lisp/files.el (wildcard-to-regexp, shell-quote-wildcard-pattern): * lisp/forms.el (forms--update): * lisp/frameset.el (frameset-filter-unshelve-param): * lisp/gnus/gnus-art.el (article-decode-charset): * lisp/gnus/gnus-kill.el (gnus-kill-parse-rn-kill-file): * lisp/gnus/gnus-mlspl.el (gnus-group-split-fancy): * lisp/gnus/gnus-msg.el (gnus-summary-resend-message-insert-gcc) (gnus-inews-insert-gcc): * lisp/gnus/gnus-rfc1843.el (rfc1843-decode-article-body): * lisp/gnus/gnus-search.el (gnus-search-indexed-parse-output) (gnus-search--complete-key-data): * lisp/gnus/gnus-spec.el (gnus-parse-simple-format): * lisp/gnus/gnus-sum.el (gnus-summary-refer-article): * lisp/gnus/gnus-util.el (gnus-extract-address-components) (gnus-newsgroup-directory-form): * lisp/gnus/gnus-uu.el (gnus-uu-grab-view): * lisp/gnus/gnus.el (gnus-group-native-p, gnus-short-group-name): * lisp/gnus/message.el (message-check-news-header-syntax) (message-make-message-id, message-user-mail-address) (message-make-fqdn, message-get-reply-headers, message-followup): * lisp/gnus/mm-decode.el (mm-dissect-buffer): * lisp/gnus/nnheader.el (nnheader-insert): * lisp/gnus/nnimap.el (nnimap-process-quirk) (nnimap-imap-ranges-to-gnus-ranges): * lisp/gnus/nnmaildir.el (nnmaildir--ensure-suffix): * lisp/gnus/nnmairix.el (nnmairix-determine-original-group-from-path): * lisp/gnus/nnrss.el (nnrss-match-macro): * lisp/gnus/nntp.el (nntp-find-group-and-number): * lisp/help-fns.el (help--symbol-completion-table-affixation): * lisp/help.el (help-function-arglist): * lisp/hippie-exp.el (he-concat-directory-file-name): * lisp/htmlfontify.el (hfy-relstub): * lisp/ido.el (ido-make-prompt, ido-complete, ido-copy-current-word) (ido-exhibit): * lisp/image/image-converter.el (image-convert-p): * lisp/info-xref.el (info-xref-docstrings): * lisp/info.el (Info-toc-build, Info-follow-reference) (Info-backward-node, Info-finder-find-node) (Info-speedbar-expand-node): * lisp/international/mule-diag.el (print-fontset-element): * lisp/language/korea-util.el (default-korean-keyboard): * lisp/linum.el (linum-after-change): * lisp/mail/ietf-drums.el (ietf-drums-parse-address): * lisp/mail/mail-utils.el (mail-dont-reply-to): * lisp/mail/rfc2047.el (rfc2047-encode-1, rfc2047-decode-string): * lisp/mail/rfc2231.el (rfc2231-parse-string): * lisp/mail/rmailkwd.el (rmail-set-label): * lisp/mail/rmailsum.el (rmail-header-summary): * lisp/mail/smtpmail.el (smtpmail-maybe-append-domain) (smtpmail-user-mail-address): * lisp/mail/uce.el (uce-reply-to-uce): * lisp/man.el (Man-default-man-entry): * lisp/mh-e/mh-alias.el (mh-alias-gecos-name) (mh-alias-minibuffer-confirm-address): * lisp/mh-e/mh-comp.el (mh-forwarded-letter-subject): * lisp/mh-e/mh-speed.el (mh-speed-parse-flists-output): * lisp/mh-e/mh-utils.el (mh-collect-folder-names-filter) (mh-folder-completion-function): * lisp/minibuffer.el (completion--make-envvar-table) (completion-file-name-table, completion-flex-try-completion) (completion-flex-all-completions): * lisp/mpc.el (mpc--proc-quote-string, mpc-cmd-special-tag-p) (mpc-constraints-tag-lookup): * lisp/net/ange-ftp.el (ange-ftp-send-cmd) (ange-ftp-allow-child-lookup): * lisp/net/mailcap.el (mailcap-mime-types): * lisp/net/mairix.el (mairix-search-thread-this-article): * lisp/net/pop3.el (pop3-open-server): * lisp/net/soap-client.el (soap-decode-xs-complex-type): * lisp/net/socks.el (socks-filter): * lisp/nxml/nxml-outln.el (nxml-highlighted-qname): * lisp/nxml/rng-cmpct.el (rng-c-expand-name, rng-c-expand-datatype): * lisp/nxml/rng-uri.el (rng-uri-file-name-1): * lisp/obsolete/complete.el (partial-completion-mode) (PC-do-completion): * lisp/obsolete/longlines.el (longlines-encode-string): * lisp/obsolete/nnir.el (nnir-compose-result): * lisp/obsolete/terminal.el (te-quote-arg-for-sh): * lisp/obsolete/tpu-edt.el (tpu-check-search-case): * lisp/obsolete/url-ns.el (isPlainHostName): * lisp/pcmpl-unix.el (pcomplete/scp): * lisp/play/dunnet.el (dun-listify-string2, dun-get-path) (dun-unix-parse, dun-doassign, dun-cat, dun-batch-unix-interface): * lisp/progmodes/ebnf2ps.el: (ebnf-eps-header-footer-comment): * lisp/progmodes/gdb-mi.el (gdb-var-delete) (gdb-speedbar-expand-node, gdbmi-bnf-incomplete-record-result): * lisp/progmodes/gud.el (gud-find-expr): * lisp/progmodes/idlw-help.el (idlwave-do-context-help1): * lisp/progmodes/idlw-shell.el (idlwave-shell-mode) (idlwave-shell-filter-hidden-output, idlwave-shell-filter): * lisp/progmodes/idlwave.el (idlwave-skip-label-or-case) (idlwave-routine-info): * lisp/progmodes/octave.el (inferior-octave-completion-at-point): * lisp/progmodes/sh-script.el (sh-add-completer): * lisp/progmodes/sql.el (defun): * lisp/progmodes/xscheme.el (xscheme-process-filter): * lisp/replace.el (query-replace-compile-replacement) (map-query-replace-regexp): * lisp/shell.el (shell--command-completion-data) (shell-environment-variable-completion): * lisp/simple.el (display-message-or-buffer): * lisp/speedbar.el (speedbar-dired, speedbar-tag-file) (speedbar-tag-expand): * lisp/subr.el (split-string-and-unquote): * lisp/tar-mode.el (tar-extract): * lisp/term.el (term-command-hook, serial-read-name): * lisp/textmodes/bibtex.el (bibtex-print-help-message): * lisp/textmodes/ispell.el (ispell-lookup-words, ispell-filter) (ispell-parse-output, ispell-buffer-local-parsing): * lisp/textmodes/reftex-cite.el (reftex-do-citation): * lisp/textmodes/reftex-parse.el (reftex-notice-new): * lisp/textmodes/reftex-ref.el (reftex-show-entry): * lisp/textmodes/reftex.el (reftex-compile-variables): * lisp/textmodes/tex-mode.el (tex-send-command) (tex-start-tex, tex-append): * lisp/thingatpt.el (thing-at-point-url-at-point): * lisp/tmm.el (tmm-add-one-shortcut): * lisp/transient.el (transient-format-key): * lisp/url/url-auth.el (url-basic-auth) (url-digest-auth-directory-id-assoc): * lisp/url/url-news.el (url-news): * lisp/url/url-util.el (url-parse-query-string): * lisp/vc/vc-cvs.el (vc-cvs-parse-entry): * lisp/wid-browse.el (widget-browse-sexp): * lisp/woman.el (woman-parse-colon-path, woman-mini-help) (WoMan-getpage-in-background, woman-negative-vertical-space): * lisp/xml.el: * test/lisp/emacs-lisp/check-declare-tests.el (check-declare-tests-warn): * test/lisp/files-tests.el (files-tests-file-name-non-special-dired-compress-handler): * test/lisp/net/network-stream-tests.el (server-process-filter): * test/src/coding-tests.el (ert-test-unibyte-buffer-dos-eol-decode): Use `string-search` instead of `string-match` and `string-match-p`.
2021-08-09 09:20:00 +00:00
(if (and (string-search "\\" dir-part)
(not (string-search "/" dir-part))
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(= (aref name-part (1- (length name-part))) ?/))
(aset name-part (1- (length name-part)) ?\\))
(concat dir-part name-part))
2003-01-31 15:24:20 +00:00
(t
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(concat dir-part name-part))))
2003-01-31 15:24:20 +00:00
1993-01-06 04:35:15 +00:00
(defun try-complete-lisp-symbol (old)
"Try to complete word as an Emacs Lisp symbol.
The argument OLD has to be nil the first call of this function, and t
for subsequent calls (for further possible completions of the same
string). It returns t if a new completion is found, nil otherwise."
(if (not old)
2003-01-31 15:24:20 +00:00
(progn
1993-01-06 04:35:15 +00:00
(he-init-string (he-lisp-symbol-beg) (point))
(if (not (he-string-member he-search-string he-tried-table))
(setq he-tried-table (cons he-search-string he-tried-table)))
2003-01-31 15:24:20 +00:00
(setq he-expand-list
1993-01-06 04:35:15 +00:00
(and (not (equal he-search-string ""))
(sort (all-completions he-search-string obarray
Don't quote lambdas in several places * lisp/allout-widgets.el (allout-widgets-adjusting-message) (allout-widgets-exposure-change-processor) (allout-widgets-count-buttons-in-region): * lisp/ansi-color.el (ansi-color-make-color-map): * lisp/case-table.el (describe-buffer-case-table): * lisp/emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): * lisp/gnus/gnus-agent.el (gnus-agent-regenerate-group): * lisp/gnus/nnir.el (nnir-run-swish++, nnir-run-swish-e) (nnir-run-hyrex, nnir-run-namazu): * lisp/hippie-exp.el (make-hippie-expand-function) (try-complete-lisp-symbol, try-complete-lisp-symbol-partially) (try-expand-all-abbrevs): * lisp/international/mule-cmds.el (sort-coding-systems) (select-safe-coding-system, select-message-coding-system) (read-language-name, encoded-string-description): * lisp/international/quail.el (quail-keyseq-translate) (quail-get-translations, quail-build-decode-map) (quail-insert-decode-map): * lisp/jka-compr.el (jka-compr-uninstall): * lisp/locate.el (locate-in-alternate-database): * lisp/mail/mailabbrev.el (mail-resolve-all-aliases-1) (mail-abbrev-make-syntax-table): * lisp/mh-e/mh-seq.el (mh-read-folder-sequences): * lisp/net/eudcb-ldap.el (eudc-ldap-simple-query-internal): * lisp/progmodes/make-mode.el (makefile-query-targets) (makefile-prompt-for-gmake-funargs): * lisp/shadowfile.el (shadow-cancel, shadow-shadows-of): * lisp/sort.el (sort-pages, sort-fields, sort-regexp-fields): * lisp/subr.el (listify-key-sequence): * lisp/term/wyse50.el (terminal-init-wyse50): * lisp/textmodes/ispell.el (ispell-help) (ispell-begin-tex-skip-regexp): * lisp/textmodes/page-ext.el (pages-sort-region): * lisp/textmodes/refer.el (refer-find-entry-in-file): * lisp/url/url-expand.el (url-expand-file-name): Don't quote lambdas.
2020-11-12 21:06:47 +00:00
(lambda (sym)
1993-01-06 04:35:15 +00:00
(or (boundp sym)
(fboundp sym)
Don't quote lambdas in several places * lisp/allout-widgets.el (allout-widgets-adjusting-message) (allout-widgets-exposure-change-processor) (allout-widgets-count-buttons-in-region): * lisp/ansi-color.el (ansi-color-make-color-map): * lisp/case-table.el (describe-buffer-case-table): * lisp/emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): * lisp/gnus/gnus-agent.el (gnus-agent-regenerate-group): * lisp/gnus/nnir.el (nnir-run-swish++, nnir-run-swish-e) (nnir-run-hyrex, nnir-run-namazu): * lisp/hippie-exp.el (make-hippie-expand-function) (try-complete-lisp-symbol, try-complete-lisp-symbol-partially) (try-expand-all-abbrevs): * lisp/international/mule-cmds.el (sort-coding-systems) (select-safe-coding-system, select-message-coding-system) (read-language-name, encoded-string-description): * lisp/international/quail.el (quail-keyseq-translate) (quail-get-translations, quail-build-decode-map) (quail-insert-decode-map): * lisp/jka-compr.el (jka-compr-uninstall): * lisp/locate.el (locate-in-alternate-database): * lisp/mail/mailabbrev.el (mail-resolve-all-aliases-1) (mail-abbrev-make-syntax-table): * lisp/mh-e/mh-seq.el (mh-read-folder-sequences): * lisp/net/eudcb-ldap.el (eudc-ldap-simple-query-internal): * lisp/progmodes/make-mode.el (makefile-query-targets) (makefile-prompt-for-gmake-funargs): * lisp/shadowfile.el (shadow-cancel, shadow-shadows-of): * lisp/sort.el (sort-pages, sort-fields, sort-regexp-fields): * lisp/subr.el (listify-key-sequence): * lisp/term/wyse50.el (terminal-init-wyse50): * lisp/textmodes/ispell.el (ispell-help) (ispell-begin-tex-skip-regexp): * lisp/textmodes/page-ext.el (pages-sort-region): * lisp/textmodes/refer.el (refer-find-entry-in-file): * lisp/url/url-expand.el (url-expand-file-name): Don't quote lambdas.
2020-11-12 21:06:47 +00:00
(symbol-plist sym))))
#'string-lessp)))))
1993-01-06 04:35:15 +00:00
(while (and he-expand-list
(he-string-member (car he-expand-list) he-tried-table))
(setq he-expand-list (cdr he-expand-list)))
(if (null he-expand-list)
(progn
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(if old (he-reset-string))
1993-01-06 04:35:15 +00:00
())
(progn
(he-substitute-string (car he-expand-list))
(setq he-expand-list (cdr he-expand-list))
t)))
(defun try-complete-lisp-symbol-partially (old)
"Try to complete as an Emacs Lisp symbol, as many characters as unique.
The argument OLD has to be nil the first call of this function. It
2003-01-31 15:24:20 +00:00
returns t if a unique, possibly partial, completion is found, nil
1993-01-06 04:35:15 +00:00
otherwise."
(let ((expansion ()))
(if (not old)
2003-01-31 15:24:20 +00:00
(progn
1993-01-06 04:35:15 +00:00
(he-init-string (he-lisp-symbol-beg) (point))
(if (not (string= he-search-string ""))
2003-01-31 15:24:20 +00:00
(setq expansion
1993-01-06 04:35:15 +00:00
(try-completion he-search-string obarray
Don't quote lambdas in several places * lisp/allout-widgets.el (allout-widgets-adjusting-message) (allout-widgets-exposure-change-processor) (allout-widgets-count-buttons-in-region): * lisp/ansi-color.el (ansi-color-make-color-map): * lisp/case-table.el (describe-buffer-case-table): * lisp/emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): * lisp/gnus/gnus-agent.el (gnus-agent-regenerate-group): * lisp/gnus/nnir.el (nnir-run-swish++, nnir-run-swish-e) (nnir-run-hyrex, nnir-run-namazu): * lisp/hippie-exp.el (make-hippie-expand-function) (try-complete-lisp-symbol, try-complete-lisp-symbol-partially) (try-expand-all-abbrevs): * lisp/international/mule-cmds.el (sort-coding-systems) (select-safe-coding-system, select-message-coding-system) (read-language-name, encoded-string-description): * lisp/international/quail.el (quail-keyseq-translate) (quail-get-translations, quail-build-decode-map) (quail-insert-decode-map): * lisp/jka-compr.el (jka-compr-uninstall): * lisp/locate.el (locate-in-alternate-database): * lisp/mail/mailabbrev.el (mail-resolve-all-aliases-1) (mail-abbrev-make-syntax-table): * lisp/mh-e/mh-seq.el (mh-read-folder-sequences): * lisp/net/eudcb-ldap.el (eudc-ldap-simple-query-internal): * lisp/progmodes/make-mode.el (makefile-query-targets) (makefile-prompt-for-gmake-funargs): * lisp/shadowfile.el (shadow-cancel, shadow-shadows-of): * lisp/sort.el (sort-pages, sort-fields, sort-regexp-fields): * lisp/subr.el (listify-key-sequence): * lisp/term/wyse50.el (terminal-init-wyse50): * lisp/textmodes/ispell.el (ispell-help) (ispell-begin-tex-skip-regexp): * lisp/textmodes/page-ext.el (pages-sort-region): * lisp/textmodes/refer.el (refer-find-entry-in-file): * lisp/url/url-expand.el (url-expand-file-name): Don't quote lambdas.
2020-11-12 21:06:47 +00:00
(lambda (sym)
1993-01-06 04:35:15 +00:00
(or (boundp sym)
(fboundp sym)
Don't quote lambdas in several places * lisp/allout-widgets.el (allout-widgets-adjusting-message) (allout-widgets-exposure-change-processor) (allout-widgets-count-buttons-in-region): * lisp/ansi-color.el (ansi-color-make-color-map): * lisp/case-table.el (describe-buffer-case-table): * lisp/emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): * lisp/gnus/gnus-agent.el (gnus-agent-regenerate-group): * lisp/gnus/nnir.el (nnir-run-swish++, nnir-run-swish-e) (nnir-run-hyrex, nnir-run-namazu): * lisp/hippie-exp.el (make-hippie-expand-function) (try-complete-lisp-symbol, try-complete-lisp-symbol-partially) (try-expand-all-abbrevs): * lisp/international/mule-cmds.el (sort-coding-systems) (select-safe-coding-system, select-message-coding-system) (read-language-name, encoded-string-description): * lisp/international/quail.el (quail-keyseq-translate) (quail-get-translations, quail-build-decode-map) (quail-insert-decode-map): * lisp/jka-compr.el (jka-compr-uninstall): * lisp/locate.el (locate-in-alternate-database): * lisp/mail/mailabbrev.el (mail-resolve-all-aliases-1) (mail-abbrev-make-syntax-table): * lisp/mh-e/mh-seq.el (mh-read-folder-sequences): * lisp/net/eudcb-ldap.el (eudc-ldap-simple-query-internal): * lisp/progmodes/make-mode.el (makefile-query-targets) (makefile-prompt-for-gmake-funargs): * lisp/shadowfile.el (shadow-cancel, shadow-shadows-of): * lisp/sort.el (sort-pages, sort-fields, sort-regexp-fields): * lisp/subr.el (listify-key-sequence): * lisp/term/wyse50.el (terminal-init-wyse50): * lisp/textmodes/ispell.el (ispell-help) (ispell-begin-tex-skip-regexp): * lisp/textmodes/page-ext.el (pages-sort-region): * lisp/textmodes/refer.el (refer-find-entry-in-file): * lisp/url/url-expand.el (url-expand-file-name): Don't quote lambdas.
2020-11-12 21:06:47 +00:00
(symbol-plist sym))))))
1993-01-06 04:35:15 +00:00
(if (or (eq expansion t)
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(string= expansion he-search-string)
(he-string-member expansion he-tried-table))
1993-01-06 04:35:15 +00:00
(setq expansion ()))))
(if (not expansion)
(progn
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(if old (he-reset-string))
1993-01-06 04:35:15 +00:00
())
(progn
(he-substitute-string expansion)
t))))
(defun he-lisp-symbol-beg ()
(save-excursion
(skip-syntax-backward "w_")
(point)))
1993-01-06 04:35:15 +00:00
(defun try-expand-line (old)
"Try to complete the current line to an entire line in the buffer.
The argument OLD has to be nil the first call of this function, and t
for subsequent calls (for further possible completions of the same
string). It returns t if a new completion is found, nil otherwise."
(let ((expansion ())
(strip-prompt (and (get-buffer-process (current-buffer))
comint-use-prompt-regexp
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
comint-prompt-regexp)))
1993-01-06 04:35:15 +00:00
(if (not old)
(progn
(he-init-string (he-line-beg strip-prompt) (point))
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
(set-marker he-search-loc he-string-beg)
1993-01-06 04:35:15 +00:00
(setq he-search-bw t)))
(if (not (equal he-search-string ""))
(save-excursion
(save-restriction
(if hippie-expand-no-restriction
(widen))
;; Try looking backward unless inhibited.
(if he-search-bw
2003-01-31 15:24:20 +00:00
(progn
(goto-char he-search-loc)
(setq expansion (he-line-search he-search-string
strip-prompt t))
(set-marker he-search-loc (point))
(if (not expansion)
(progn
(set-marker he-search-loc he-string-end)
(setq he-search-bw ())))))
(if (not expansion) ; Then look forward.
2003-01-31 15:24:20 +00:00
(progn
(goto-char he-search-loc)
2003-01-31 15:24:20 +00:00
(setq expansion (he-line-search he-search-string
strip-prompt nil))
(set-marker he-search-loc (point)))))))
1993-01-06 04:35:15 +00:00
(if (not expansion)
(progn
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(if old (he-reset-string))
1993-01-06 04:35:15 +00:00
())
(progn
(he-substitute-string expansion t)
t))))
(defun try-expand-line-all-buffers (old)
"Try to complete the current line, searching all other buffers.
The argument OLD has to be nil the first call of this function, and t
for subsequent calls (for further possible completions of the same
string). It returns t if a new completion is found, nil otherwise."
(he--all-buffers
old
(lambda () (he-line-beg (and (get-buffer-process (current-buffer))
comint-use-prompt-regexp
comint-prompt-regexp)))
(lambda (string)
(he-line-search string
(and (get-buffer-process (current-buffer))
comint-use-prompt-regexp
comint-prompt-regexp)
nil))))
(defun he--all-buffers (old beg-function search-function)
1993-01-06 04:35:15 +00:00
(let ((expansion ())
(buf (current-buffer))
(only-buffers hippie-expand-only-buffers)
(ignore-buffers hippie-expand-ignore-buffers)
(orig-case-fold-search case-fold-search))
1993-01-06 04:35:15 +00:00
(if (not old)
(progn
(he-init-string (funcall beg-function) (point))
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
(setq he-search-bufs (buffer-list))
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(setq he-searched-n-bufs 0)
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
(set-marker he-search-loc 1 (car he-search-bufs))))
1993-01-06 04:35:15 +00:00
(if (not (equal he-search-string ""))
2003-01-31 15:24:20 +00:00
(while (and he-search-bufs
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(not expansion)
(or (not hippie-expand-max-buffers)
(< he-searched-n-bufs hippie-expand-max-buffers)))
(set-buffer (car he-search-bufs))
(if (and (not (eq (current-buffer) buf))
(if only-buffers
(he-buffer-member only-buffers)
(not (he-buffer-member ignore-buffers))))
(save-excursion
(save-restriction
(if hippie-expand-no-restriction
(widen))
(goto-char he-search-loc)
2003-01-31 15:24:20 +00:00
(setq expansion
(let ((case-fold-search orig-case-fold-search))
(funcall search-function he-search-string)))
(set-marker he-search-loc (point))
(if (not expansion)
(progn
(setq he-search-bufs (cdr he-search-bufs))
(setq he-searched-n-bufs (1+ he-searched-n-bufs))
(set-marker he-search-loc 1 (car he-search-bufs))))))
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(setq he-search-bufs (cdr he-search-bufs))
(set-marker he-search-loc 1 (car he-search-bufs)))))
1993-01-06 04:35:15 +00:00
(set-buffer buf)
(if (not expansion)
(progn
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(if old (he-reset-string))
1993-01-06 04:35:15 +00:00
())
(progn
(he-substitute-string expansion t)
t))))
1993-01-06 04:35:15 +00:00
2003-01-31 15:24:20 +00:00
(defun he-line-search (str strip-prompt reverse)
1993-01-06 04:35:15 +00:00
(let ((result ()))
(while (and (not result)
(if reverse
2003-01-31 15:24:20 +00:00
(re-search-backward
1993-01-06 04:35:15 +00:00
(he-line-search-regexp str strip-prompt)
nil t)
(re-search-forward
(he-line-search-regexp str strip-prompt)
nil t)))
1999-11-15 12:20:50 +00:00
(setq result (buffer-substring-no-properties (match-end 1)
(match-end 0)))
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(if (he-string-member result he-tried-table t)
(setq result nil))) ; if already in table, ignore
1993-01-06 04:35:15 +00:00
result))
(defun he-line-beg (strip-prompt)
(save-excursion
2003-01-31 15:24:20 +00:00
(if (re-search-backward (he-line-search-regexp "" strip-prompt)
Replace still more end-of-line etc with line-end-position, etc. * lisp/gnus/nnbabyl.el (nnbabyl-request-move-article, nnbabyl-delete-mail) (nnbabyl-check-mbox): Use point-at-bol. * lisp/cedet/semantic/lex.el (semantic-lex-ignore-comments, semantic-flex): * lisp/cedet/semantic/grammar.el (semantic-grammar-epilogue): * lisp/cedet/ede/speedbar.el (ede-find-nearest-file-line): * lisp/cedet/ede/pmake.el (ede-proj-makefile-insert-dist-rules): * lisp/cedet/ede/autoconf-edit.el (autoconf-delete-parameter): Use point-at-bol and point-at-eol. * lisp/vc/emerge.el (emerge-line-number-in-buf): * lisp/textmodes/ispell.el (ispell-region): * lisp/textmodes/fill.el (current-fill-column): * lisp/progmodes/xscheme.el (xscheme-send-current-line): * lisp/progmodes/vhdl-mode.el (vhdl-current-line, vhdl-line-copy): * lisp/progmodes/tcl.el (tcl-hairy-scan-for-comment): * lisp/progmodes/sh-script.el (sh-handle-prev-do): * lisp/progmodes/meta-mode.el (meta-indent-line): * lisp/progmodes/idlwave.el (idlwave-goto-comment, idlwave-fill-paragraph) (idlwave-in-quote): * lisp/progmodes/idlw-shell.el (idlwave-shell-current-frame) (idlwave-shell-update-bp-overlays, idlwave-shell-sources-filter): * lisp/progmodes/fortran.el (fortran-looking-at-if-then): * lisp/progmodes/etags.el (find-tag-in-order, etags-snarf-tag): * lisp/progmodes/cperl-mode.el (cperl-sniff-for-indent) (cperl-find-pods-heres): * lisp/progmodes/ada-mode.el (ada-get-current-indent, ada-narrow-to-defun): * lisp/net/quickurl.el (quickurl-list-insert): * lisp/net/ldap.el (ldap-search-internal): * lisp/net/eudc.el (eudc-expand-inline): * lisp/mail/sendmail.el (sendmail-send-it): * lisp/mail/mspools.el (mspools-visit-spool, mspools-get-spool-name): * lisp/emulation/viper-cmd.el (viper-paren-match, viper-backward-indent) (viper-brac-function): * lisp/calc/calc-yank.el (calc-do-grab-region): * lisp/calc/calc-keypd.el (calc-keypad-press): * lisp/term.el (term-move-columns, term-insert-spaces): * lisp/speedbar.el (speedbar-highlight-one-tag-line): * lisp/simple.el (current-word): * lisp/mouse-drag.el (mouse-drag-should-do-col-scrolling): * lisp/info.el (Info-find-node-in-buffer-1, Info-follow-reference) (Info-scroll-down): * lisp/hippie-exp.el (he-line-beg): * lisp/epa.el (epa--marked-keys): * lisp/dired-aux.el (dired-kill-line, dired-do-kill-lines) (dired-update-file-line, dired-add-entry, dired-remove-entry) (dired-relist-entry): * lisp/buff-menu.el (Buffer-menu-buffer): * lisp/array.el (current-line): * lisp/allout.el (allout-resolve-xref) (allout-latex-verbatim-quote-curr-line): Replace yet more uses of end-of-line etc with line-end-position.
2010-11-09 05:33:07 +00:00
(line-beginning-position) t)
1993-01-06 04:35:15 +00:00
(match-beginning 2)
(point))))
(defun he-line-search-regexp (pat strip-prompt)
(if strip-prompt
(concat "\\(" comint-prompt-regexp "\\|^\\s-*\\)\\(?2:"
1993-01-06 04:35:15 +00:00
(regexp-quote pat)
"[^\n]*[^ \t\n]\\)")
2003-01-31 15:24:20 +00:00
(concat "^\\(\\s-*\\)\\("
1993-01-06 04:35:15 +00:00
(regexp-quote pat)
"[^\n]*[^ \t\n]\\)")))
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
(defun try-expand-list (old)
"Try to complete the current beginning of a list.
The argument OLD has to be nil the first call of this function, and t
for subsequent calls (for further possible completions of the same
string). It returns t if a new completion is found, nil otherwise."
(let ((expansion ()))
(if (not old)
(progn
(he-init-string (he-list-beg) (point))
(set-marker he-search-loc he-string-beg)
(setq he-search-bw t)))
(if (not (equal he-search-string ""))
(save-excursion
(save-restriction
(if hippie-expand-no-restriction
(widen))
;; Try looking backward unless inhibited.
(if he-search-bw
2003-01-31 15:24:20 +00:00
(progn
(goto-char he-search-loc)
(setq expansion (he-list-search he-search-string t))
(set-marker he-search-loc (point))
(if (not expansion)
(progn
(set-marker he-search-loc he-string-end)
(setq he-search-bw ())))))
(if (not expansion) ; Then look forward.
2003-01-31 15:24:20 +00:00
(progn
(goto-char he-search-loc)
(setq expansion (he-list-search he-search-string nil))
(set-marker he-search-loc (point)))))))
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
(if (not expansion)
(progn
(if old (he-reset-string))
())
(progn
(he-substitute-string expansion t)
t))))
(defun try-expand-list-all-buffers (old)
"Try to complete the current list, searching all other buffers.
The argument OLD has to be nil the first call of this function, and t
for subsequent calls (for further possible completions of the same
string). It returns t if a new completion is found, nil otherwise."
(he--all-buffers old #'he-list-beg #'he-list-search))
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
(defun he-list-search (str &optional reverse)
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
(let ((result ())
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
beg pos err)
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
(while (and (not result)
(if reverse
(search-backward str nil t)
(search-forward str nil t)))
(setq pos (point))
(setq beg (match-beginning 0))
(goto-char beg)
(setq err ())
(condition-case ()
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(forward-list 1)
(error (setq err t)))
2003-01-31 15:24:20 +00:00
(if (and reverse
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(> (point) he-string-beg))
(setq err t))
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
(if (not err)
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(progn
(setq result (buffer-substring-no-properties beg (point)))
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(if (he-string-member result he-tried-table t)
(setq result nil)))) ; if already in table, ignore
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
(goto-char pos))
result))
(defun he-list-beg ()
(save-excursion
(condition-case ()
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(backward-up-list 1)
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
(error ()))
(point)))
1993-01-06 04:35:15 +00:00
(defun try-expand-all-abbrevs (old)
"Try to expand word before point according to all abbrev tables.
The argument OLD has to be nil the first call of this function, and t
for subsequent calls (for further possible expansions of the same
string). It returns t if a new expansion is found, nil otherwise."
(if (not old)
(progn
(he-init-string (he-dabbrev-beg) (point))
2003-01-31 15:24:20 +00:00
(setq he-expand-list
1993-01-06 04:35:15 +00:00
(and (not (equal he-search-string ""))
Don't quote lambdas in several places * lisp/allout-widgets.el (allout-widgets-adjusting-message) (allout-widgets-exposure-change-processor) (allout-widgets-count-buttons-in-region): * lisp/ansi-color.el (ansi-color-make-color-map): * lisp/case-table.el (describe-buffer-case-table): * lisp/emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): * lisp/gnus/gnus-agent.el (gnus-agent-regenerate-group): * lisp/gnus/nnir.el (nnir-run-swish++, nnir-run-swish-e) (nnir-run-hyrex, nnir-run-namazu): * lisp/hippie-exp.el (make-hippie-expand-function) (try-complete-lisp-symbol, try-complete-lisp-symbol-partially) (try-expand-all-abbrevs): * lisp/international/mule-cmds.el (sort-coding-systems) (select-safe-coding-system, select-message-coding-system) (read-language-name, encoded-string-description): * lisp/international/quail.el (quail-keyseq-translate) (quail-get-translations, quail-build-decode-map) (quail-insert-decode-map): * lisp/jka-compr.el (jka-compr-uninstall): * lisp/locate.el (locate-in-alternate-database): * lisp/mail/mailabbrev.el (mail-resolve-all-aliases-1) (mail-abbrev-make-syntax-table): * lisp/mh-e/mh-seq.el (mh-read-folder-sequences): * lisp/net/eudcb-ldap.el (eudc-ldap-simple-query-internal): * lisp/progmodes/make-mode.el (makefile-query-targets) (makefile-prompt-for-gmake-funargs): * lisp/shadowfile.el (shadow-cancel, shadow-shadows-of): * lisp/sort.el (sort-pages, sort-fields, sort-regexp-fields): * lisp/subr.el (listify-key-sequence): * lisp/term/wyse50.el (terminal-init-wyse50): * lisp/textmodes/ispell.el (ispell-help) (ispell-begin-tex-skip-regexp): * lisp/textmodes/page-ext.el (pages-sort-region): * lisp/textmodes/refer.el (refer-find-entry-in-file): * lisp/url/url-expand.el (url-expand-file-name): Don't quote lambdas.
2020-11-12 21:06:47 +00:00
(mapcar (lambda (sym)
(if (and (boundp sym)
(abbrev-table-p (symbol-value sym)))
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(abbrev-expansion (downcase he-search-string)
(symbol-value sym))))
2003-01-31 15:24:20 +00:00
(append '(local-abbrev-table
1993-01-06 04:35:15 +00:00
global-abbrev-table)
abbrev-table-name-list))))))
(while (and he-expand-list
(or (not (car he-expand-list))
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(he-string-member (car he-expand-list) he-tried-table t)))
1993-01-06 04:35:15 +00:00
(setq he-expand-list (cdr he-expand-list)))
(if (null he-expand-list)
(progn
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(if old (he-reset-string))
1993-01-06 04:35:15 +00:00
())
(progn
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
(he-substitute-string (car he-expand-list) t)
1993-01-06 04:35:15 +00:00
(setq he-expand-list (cdr he-expand-list))
t)))
(defun try-expand-dabbrev (old)
"Try to expand word \"dynamically\", searching the current buffer.
The argument OLD has to be nil the first call of this function, and t
for subsequent calls (for further possible expansions of the same
string). It returns t if a new expansion is found, nil otherwise."
(let ((expansion ()))
(if (not old)
(progn
(he-init-string (he-dabbrev-beg) (point))
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
(set-marker he-search-loc he-string-beg)
1993-01-06 04:35:15 +00:00
(setq he-search-bw t)))
(if (not (equal he-search-string ""))
(save-excursion
(save-restriction
(if hippie-expand-no-restriction
(widen))
;; Try looking backward unless inhibited.
(if he-search-bw
2003-01-31 15:24:20 +00:00
(progn
(goto-char he-search-loc)
(setq expansion (he-dabbrev-search he-search-string t))
(set-marker he-search-loc (point))
(if (not expansion)
(progn
(set-marker he-search-loc he-string-end)
(setq he-search-bw ())))))
(if (not expansion) ; Then look forward.
2003-01-31 15:24:20 +00:00
(progn
(goto-char he-search-loc)
(setq expansion (he-dabbrev-search he-search-string nil))
(set-marker he-search-loc (point)))))))
2003-01-31 15:24:20 +00:00
1993-01-06 04:35:15 +00:00
(if (not expansion)
(progn
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(if old (he-reset-string))
1993-01-06 04:35:15 +00:00
())
(progn
(he-substitute-string expansion t)
t))))
(defun try-expand-dabbrev-all-buffers (old)
"Try to expand word \"dynamically\", searching all other buffers.
1993-01-06 04:35:15 +00:00
The argument OLD has to be nil the first call of this function, and t
for subsequent calls (for further possible expansions of the same
string). It returns t if a new expansion is found, nil otherwise."
(he--all-buffers old #'he-dabbrev-beg #'he-dabbrev-search))
1993-01-06 04:35:15 +00:00
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
;; Thanks go to Jeff Dairiki <dairiki@faraday.apl.washington.edu> who
;; suggested this one.
(defun try-expand-dabbrev-visible (old)
"Try to expand word \"dynamically\", searching visible window parts.
The argument OLD has to be nil the first call of this function, and t
for subsequent calls (for further possible expansions of the same
string). It returns t if a new expansion is found, nil otherwise."
(let ((expansion ())
Do not call to `selected-window' where it is assumed by default. Affected functions are `window-minibuffer-p', `window-dedicated-p', `window-hscroll', `window-width', `window-height', `window-buffer', `window-frame', `window-start', `window-point', `next-window' and `window-display-table'. * abbrev.el (abbrev--default-expand): * bs.el (bs--show-with-configuration): * buff-menu.el (Buffer-menu-mouse-select): * calc/calc.el (calc): * calendar/calendar.el (calendar-generate-window): * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries) (diary-make-entry): * comint.el (send-invisible, comint-dynamic-complete-filename) (comint-dynamic-simple-complete, comint-dynamic-list-completions): * completion.el (complete): * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list): * disp-table.el (describe-current-display-table): * doc-view.el (doc-view-insert-image): * ebuff-menu.el (Electric-buffer-menu-mouse-select): * ehelp.el (with-electric-help): * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer): * emacs-lisp/helper.el (Helper-help-scroller): * emulation/cua-base.el (cua--post-command-handler-1): * eshell/esh-mode.el (eshell-output-filter): * ffap.el (ffap-gnus-wrapper): * help-macro.el (make-help-screen): * hilit-chg.el (highlight-compare-buffers): * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible): * hl-line.el (global-hl-line-highlight): * icomplete.el (icomplete-simple-completing-p): * isearch.el (isearch-done): * jit-lock.el (jit-lock-stealth-fontify): * mail/rmailsum.el (rmail-summary-scroll-msg-up): * lisp/mouse-drag.el (mouse-drag-should-do-col-scrolling): * mpc.el (mpc-tagbrowser, mpc): * net/rcirc.el (rcirc-any-buffer): * play/gomoku.el (gomoku-max-width, gomoku-max-height): * play/landmark.el (landmark-max-width, landmark-max-height): * play/zone.el (zone): * progmodes/compile.el (compilation-goto-locus): * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern): * progmodes/etags.el (find-tag-other-window): * progmodes/fortran.el (fortran-column-ruler): * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe): * progmodes/verilog-mode.el (verilog-point-text): * reposition.el (reposition-window): * rot13.el (toggle-rot13-mode): * server.el (server-switch-buffer): * shell.el (shell-dynamic-complete-command) (shell-dynamic-complete-environment-variable): * simple.el (insert-buffer, set-selective-display) (delete-completion-window): * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly) (speedbar-recenter): * startup.el (fancy-splash-head): * textmodes/ispell.el (ispell-command-loop): * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region): * tutorial.el (help-with-tutorial): * vc/add-log.el (add-change-log-entry): * vc/compare-w.el (compare-windows): * vc/ediff-help.el (ediff-indent-help-message): * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region): * vc/ediff-wind.el (ediff-skip-unsuitable-frames) (ediff-setup-control-frame): * vc/emerge.el (emerge-position-region): * vc/pcvs-util.el (cvs-bury-buffer): * window.el (walk-windows, mouse-autoselect-window-select): * winner.el (winner-set-conf, winner-undo): Related users changed.
2013-08-05 14:26:57 +00:00
(flag (if (frame-visible-p (window-frame))
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
'visible t)))
(unless old
(he-init-string (he-dabbrev-beg) (point))
(setq he-search-window (selected-window))
(set-marker he-search-loc
(window-start he-search-window)
(window-buffer he-search-window)))
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(while (and (not (equal he-search-string ""))
(marker-position he-search-loc)
(not expansion))
* x-dnd.el (x-dnd-maybe-call-test-function): * window.el (split-window-vertically): * whitespace.el (whitespace-help-on): * vc-rcs.el (vc-rcs-consult-headers): * userlock.el (ask-user-about-lock-help) (ask-user-about-supersession-help): * type-break.el (type-break-force-mode-line-update): * time-stamp.el (time-stamp-conv-warn): * terminal.el (te-set-output-log, te-more-break, te-filter) (te-sentinel,terminal-emulator): * term.el (make-term, term-exec, term-sentinel, term-read-input-ring) (term-write-input-ring, term-check-source, term-start-output-log): (term-display-buffer-line, term-dynamic-list-completions): (term-ansi-make-term, serial-term): * subr.el (selective-display): * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer) (strokes-encode-buffer, strokes-xpm-for-compressed-string): * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info) (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support) (speedbar-remove-localized-speedbar-support) (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy) (speedbar-update-special-contents, speedbar-buffer-buttons-engine) (speedbar-buffers-line-directory): * simple.el (shell-command-on-region, append-to-buffer) (prepend-to-buffer): * shadowfile.el (shadow-save-todo-file): * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1) (scroll-bar-maybe-set-window-start): * sb-image.el (speedbar-image-dump): * saveplace.el (save-place-alist-to-file, save-places-to-alist) (load-save-place-alist-from-file): * ps-samp.el (ps-print-message-from-summary): * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox) (ps-background-image, ps-begin-job, ps-do-despool): * ps-bdf.el (bdf-find-file, bdf-read-font-info): * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting) (pr-ps-message-from-summary, pr-lpr-message-from-summary): (pr-call-process, pr-file-list, pr-interface-save): * novice.el (disabled-command-function) (enable-command, disable-command): * mouse.el (mouse-buffer-menu-alist): * mouse-copy.el (mouse-kill-preserving-secondary): * macros.el (kbd-macro-query): * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt): * informat.el (batch-info-validate): * ido.el (ido-copy-current-word, ido-initiate-auto-merge): * hippie-exp.el (try-expand-dabbrev-visible): * help-mode.el (help-make-xrefs): * help-fns.el (describe-variable): * generic-x.el (bat-generic-mode-run-as-comint): * finder.el (finder-mouse-select): * find-dired.el (find-dired-sentinel): * filesets.el (filesets-file-close): * files.el (list-directory): * faces.el (list-faces-display, describe-face): * facemenu.el (list-colors-display): * ezimage.el (ezimage-image-association-dump, ezimage-image-dump): * epg.el (epg--process-filter, epg-cancel): * epa.el (epa--marked-keys, epa--select-keys, epa-display-info) (epa--read-signature-type): * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B) (emerge-file-names): * ehelp.el (electric-helpify): * ediff.el (ediff-regions-wordwise, ediff-regions-linewise): * ediff-vers.el (rcs-ediff-view-revision): * ediff-util.el (ediff-setup): * ediff-mult.el (ediff-append-custom-diff): * ediff-diff.el (ediff-exec-process, ediff-process-sentinel) (ediff-wordify): * echistory.el (Electric-command-history-redo-expression): * dos-w32.el (find-file-not-found-set-buffer-file-coding-system): * disp-table.el (describe-display-table): * dired.el (dired-find-buffer-nocreate): * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory): * dabbrev.el (dabbrev--same-major-mode-p): * chistory.el (list-command-history): * apropos.el (apropos-documentation): * allout.el (allout-obtain-passphrase): (allout-copy-exposed-to-buffer): (allout-verify-passphrase): Use with-current-buffer.
2009-11-13 22:19:45 +00:00
(with-current-buffer (marker-buffer he-search-loc)
(save-excursion
(goto-char he-search-loc)
(setq expansion (he-dabbrev-search he-search-string ()
(window-end he-search-window)))
(if (and expansion
(eq (marker-buffer he-string-beg) (current-buffer))
(eq (marker-position he-string-beg) (match-beginning 0)))
(setq expansion
(he-dabbrev-search he-search-string ()
(window-end he-search-window))))
(set-marker he-search-loc (point) (current-buffer))))
(unless expansion
(setq he-search-window (next-window he-search-window nil flag))
(if (eq he-search-window (selected-window))
(set-marker he-search-loc nil)
(set-marker he-search-loc (window-start he-search-window)
(window-buffer he-search-window)))))
2003-01-31 15:24:20 +00:00
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(if (not expansion)
(progn
(if old (he-reset-string))
())
(progn
(he-substitute-string expansion t)
t))))
1993-01-06 04:35:15 +00:00
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(defun he-dabbrev-search (pattern &optional reverse limit)
(let ((result ())
(regpat (cond ((not hippie-expand-dabbrev-as-symbol)
(concat "\\<" (regexp-quote pattern) "\\sw+"))
((eq (char-syntax (aref pattern 0)) ?_)
(concat (regexp-quote pattern) "\\(\\sw\\|\\s_\\)+"))
(t
(concat "\\<" (regexp-quote pattern)
"\\(\\sw\\|\\s_\\)+")))))
2003-01-31 15:24:20 +00:00
(while (and (not result)
1993-01-06 04:35:15 +00:00
(if reverse
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(re-search-backward regpat limit t)
(re-search-forward regpat limit t)))
(setq result (buffer-substring-no-properties (match-beginning 0)
(match-end 0)))
(if (or (and hippie-expand-dabbrev-as-symbol
(> (match-beginning 0) (point-min))
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(memq (char-syntax (char-after (1- (match-beginning 0))))
'(?_ ?w)))
(he-string-member result he-tried-table t))
(setq result nil))) ; ignore if bad prefix or already in table
1993-01-06 04:35:15 +00:00
result))
(defun he-dabbrev-beg ()
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(let ((op (point)))
(save-excursion
(if hippie-expand-dabbrev-skip-space
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(skip-syntax-backward ". "))
(if (= (skip-syntax-backward (if hippie-expand-dabbrev-as-symbol
"w_" "w"))
0)
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
op
(point)))))
(defun try-expand-dabbrev-from-kill (old)
"Try to expand word \"dynamically\", searching the kill ring.
The argument OLD has to be nil the first call of this function, and t
for subsequent calls (for further possible completions of the same
string). It returns t if a new completion is found, nil otherwise."
(let ((expansion ()))
(if (not old)
2003-01-31 15:24:20 +00:00
(progn
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(he-init-string (he-dabbrev-beg) (point))
(setq he-expand-list
(if (not (equal he-search-string ""))
kill-ring))
(setq he-search-loc2 0)))
(if (not (equal he-search-string ""))
(setq expansion (he-dabbrev-kill-search he-search-string)))
(if (not expansion)
(progn
(if old (he-reset-string))
())
(progn
(he-substitute-string expansion t)
t))))
(defun he-dabbrev-kill-search (pattern)
(let ((result ())
(regpat (cond ((not hippie-expand-dabbrev-as-symbol)
(concat "\\<" (regexp-quote pattern) "\\sw+"))
((eq (char-syntax (aref pattern 0)) ?_)
(concat (regexp-quote pattern) "\\(\\sw\\|\\s_\\)+"))
(t
(concat "\\<" (regexp-quote pattern)
"\\(\\sw\\|\\s_\\)+"))))
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(killstr (car he-expand-list)))
2003-01-31 15:24:20 +00:00
(while (and (not result)
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
he-expand-list)
(while (and (not result)
(string-match regpat killstr he-search-loc2))
(setq result (substring killstr (match-beginning 0) (match-end 0)))
(set-text-properties 0 (length result) () result)
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(setq he-search-loc2 (1+ (match-beginning 0)))
(if (or (and hippie-expand-dabbrev-as-symbol
(> (match-beginning 0) 0)
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(memq (char-syntax (aref killstr (1- (match-beginning 0))))
'(?_ ?w)))
(he-string-member result he-tried-table t))
(setq result nil))) ; ignore if bad prefix or already in table
2003-01-31 15:24:20 +00:00
(if (and (not result)
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
he-expand-list)
(progn
2003-01-31 15:24:20 +00:00
(setq he-expand-list (cdr he-expand-list))
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(setq killstr (car he-expand-list))
(setq he-search-loc2 0))))
result))
(defun try-expand-whole-kill (old)
"Try to complete text with something from the kill ring.
The argument OLD has to be nil the first call of this function, and t
for subsequent calls (for further possible completions of the same
string). It returns t if a new completion is found, nil otherwise."
(let ((expansion ()))
(if (not old)
2003-01-31 15:24:20 +00:00
(progn
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(he-init-string (he-kill-beg) (point))
(if (not (he-string-member he-search-string he-tried-table))
(setq he-tried-table (cons he-search-string he-tried-table)))
2003-01-31 15:24:20 +00:00
(setq he-expand-list
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(if (not (equal he-search-string ""))
kill-ring))
(setq he-search-loc2 ())))
(if (not (equal he-search-string ""))
(setq expansion (he-whole-kill-search he-search-string)))
(if (not expansion)
(progn
(if old (he-reset-string))
())
(progn
(he-substitute-string expansion)
t))))
(defun he-whole-kill-search (str)
(let ((case-fold-search ())
(result ())
(str (regexp-quote str))
(killstr (car he-expand-list))
(pos -1))
(while (and (not result)
he-expand-list)
(if (not he-search-loc2)
(while (setq pos (string-match str killstr (1+ pos)))
(setq he-search-loc2 (cons pos he-search-loc2))))
(while (and (not result)
he-search-loc2)
(setq pos (car he-search-loc2))
(setq he-search-loc2 (cdr he-search-loc2))
(save-excursion
(goto-char he-string-beg)
(if (and (>= (- (point) pos) (point-min)) ; avoid some string GC
(eq (char-after (- (point) pos)) (aref killstr 0))
(search-backward (substring killstr 0 pos)
(- (point) pos) t))
(progn
(setq result (substring killstr pos))
(set-text-properties 0 (length result) () result))))
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(if (and result
(he-string-member result he-tried-table))
(setq result nil))) ; ignore if already in table
(if (and (not result)
he-expand-list)
(progn
2003-01-31 15:24:20 +00:00
(setq he-expand-list (cdr he-expand-list))
(hippie-expand): Removed bug - don't undo from another buffer. (he-reset-string): Removed bug - don't move markers. (he-capitalize-first): New function, defining new "case". (he-transfer-case): New function. (he-transfer-case-ok): Function removed. (he-substitute-string,he-ordinary-case-p,he-string-member): Use the new functions above, for the new case handling. (he-file-name-chars): New variable. (he-file-name-beg): Use `he-file-name-chars'. (he-file-name-nondirectory,he-file-name-directory, he-file-directory-p,he-concat-directory-file-name): New functions to handle VMS and PC filename formats more accurately. (try-complete-file-name,try-complete-file-name-partially): Use the new functions above. (try-expand-line-all-buffers,try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use `case-fold-search' from the original buffer. (he-line-beg): Removed bug that made point move. (try-expand-all-abbrevs): Check that abbrev tables exist before use. (try-expand-dabbrev-visible): New try function. (he-search-window): New variable used by `try-expand-dabbrev-visible'. (he-dab-search-regexp): Function removed. (he-dab-search): Renamed to `he-dabbrev-search'. (he-dabbrev-search): Find only whole matching symbols. (he-dabbrev-skip-space): New variable. (he-dabbrev-beg): Use `he-dabbrev-skip-space'. (try-expand-dabbrev-from-kill,he-dabbrev-kill-search): New try function, with requisites. (try-expand-whole-kill,he-whole-kill-search,he-kill-beg): New try function, with requisites. (he-search-loc2): New variable, used by `try-expand-whole-kill' and `try-expand-dabbrev-from-kill'. (hippie-expand-try-functions-list): Added the try functions `try-complete-file-name-partially', `try-expand-dabbrev-from-kill' and `try-complete-lisp-symbol-partially'. (Several functions): Adjusted and corrected use of `he-tried-table'.
1995-10-13 15:57:04 +00:00
(setq killstr (car he-expand-list))
(setq pos -1))))
result))
(defun he-kill-beg ()
(let ((op (point)))
(save-excursion
(skip-syntax-backward "^w_")
(if (= (skip-syntax-backward "w_") 0)
op
(point)))))
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
(provide 'hippie-exp)
1993-01-06 04:35:15 +00:00
* hippie-exp.el: Renamed from hippie.el. Changes from Anders Holst, to bring hippie-expand up to version 1.2: * hippie-exp.el (hippie-expand-max-buffers): New variable. (try-expand-line-all-buffers, try-expand-list-all-buffers, try-expand-dabbrev-all-buffers): Use it. (try-expand-list, try-expand-list-all-buffers): New functions. (he-string-beg, he-string-end, he-search-loc): These values are now markers, not integers. Uses changed. (he-reset-string, he-substitute-string): Use a marker to preserve the old position of point. (try-expand-all-abbrevs): handle case the same way as the usual expand-abbrev (which is not a very good way, but for consistency...). (he-dabbrev-beg): Use `skip-syntax' instead of `skip-chars', to adjust its behavior to different modes. (hippie-expand): Don't messages which try function it is using, when the expansion itself is done in the minibuffer (it was very annoying to have the message obscuring the expansion). (try-complete-file-name, try-complete-file-name-partially, try-complete-lisp-symbol, try-complete-lisp-symbol-partially, try-expand-line, try-expand-line-all-buffers, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers): No unnecessary "resetting" of the epansion, when no expansion is done (caused the buffer to be marked as changed, although nothing was done, among other things). (he-reset-string): Undoing of last expansion at a later occasion, now undoes correctly (before, it garbled things up). (make-hippie-expand-function): now uses "(function ...)" instead of "'" (matters for compilation). (try-expand-line, try-expand-line-all-buffers, he-line-search-regexp): uses `comint-prompt-regexp' instead of `shell-prompt-pattern', to strip off prompt in process buffers.
1993-07-18 06:20:15 +00:00
;;; hippie-exp.el ends here