comparison lisp/comint.el @ 33166:61e62bc5bd7f

(comint-completion-addsuffix): Fix custom type.
author Dave Love <fx@gnu.org>
date Fri, 03 Nov 2000 11:31:34 +0000
parents 1d835756e8e7
children e821d3197110
comparison
equal deleted inserted replaced
33165:8b3f1e99c11a 33166:61e62bc5bd7f
2332 (defcustom comint-completion-addsuffix t 2332 (defcustom comint-completion-addsuffix t
2333 "*If non-nil, add a `/' to completed directories, ` ' to file names. 2333 "*If non-nil, add a `/' to completed directories, ` ' to file names.
2334 If a cons pair, it should be of the form (DIRSUFFIX . FILESUFFIX) where 2334 If a cons pair, it should be of the form (DIRSUFFIX . FILESUFFIX) where
2335 DIRSUFFIX and FILESUFFIX are strings added on unambiguous or exact completion. 2335 DIRSUFFIX and FILESUFFIX are strings added on unambiguous or exact completion.
2336 This mirrors the optional behavior of tcsh." 2336 This mirrors the optional behavior of tcsh."
2337 :type 'boolean 2337 :type '(choice (const :tag "None" nil)
2338 (const :tag "add /" t)
2339 (cons :tag "Suffix pair"
2340 (string :tag "Directory suffix")
2341 (string :tag "File suffix")))
2338 :group 'comint-completion) 2342 :group 'comint-completion)
2339 2343
2340 (defcustom comint-completion-recexact nil 2344 (defcustom comint-completion-recexact nil
2341 "*If non-nil, use shortest completion if characters cannot be added. 2345 "*If non-nil, use shortest completion if characters cannot be added.
2342 This mirrors the optional behavior of tcsh. 2346 This mirrors the optional behavior of tcsh.