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:
Sean Whitton 2023-03-22 10:28:05 -07:00
parent c5f369bacc
commit e11813d574

View file

@ -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.