Mercurial > emacs
changeset 26599:e10a1d0deb4b
Require comint when compiling.
(hippie-expand): Add :links.
(hippie-expand-try-functions-list): Customize.
author | Dave Love <fx@gnu.org> |
---|---|
date | Thu, 25 Nov 1999 19:18:15 +0000 |
parents | 7c28a5765af4 |
children | a31098c759d5 |
files | lisp/hippie-exp.el |
diffstat | 1 files changed, 18 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/hippie-exp.el Thu Nov 25 19:00:17 1999 +0000 +++ b/lisp/hippie-exp.el Thu Nov 25 19:18:15 1999 +0000 @@ -168,8 +168,12 @@ ;;; Code: +(eval-when-compile (require 'comint)) + (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") :group 'abbrev :group 'convenience) @@ -198,19 +202,22 @@ (defvar he-search-window ()) ;;;###autoload -(defvar 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) +(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) "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.") +or insert functions in this list." + :type '(repeat function) + :group 'hippie-expand) ;;;###autoload (defcustom hippie-expand-verbose t