mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-07 15:21:46 +00:00
Make icomplete-tidy-shadowed-file-names into a defcustom
lisp/icomplete.el (icomplete-tidy-shadowed-file-names): Make variable into a defcustom.
This commit is contained in:
parent
c5f369bacc
commit
e11813d574
@ -69,11 +69,12 @@ When nil, show candidates in full."
|
||||
:type 'boolean
|
||||
:version "24.4")
|
||||
|
||||
(defvar icomplete-tidy-shadowed-file-names nil
|
||||
(defcustom icomplete-tidy-shadowed-file-names nil
|
||||
"If non-nil, automatically delete superfluous parts of file names.
|
||||
For example, if the user types ~/ after a long path name,
|
||||
everything preceding the ~/ is discarded so the interactive
|
||||
selection process starts again from the user's $HOME.")
|
||||
selection process starts again from the user's $HOME."
|
||||
:type 'boolean)
|
||||
|
||||
(defcustom icomplete-show-matches-on-no-input nil
|
||||
"When non-nil, show completions when first prompting for input.
|
||||
|
Loading…
Reference in New Issue
Block a user