]> git.eshelyaron.com Git - emacs.git/commitdiff
Describe the effect of 'guess' for 'ido-use-filename-at-point'
authorRobert Pluim <rpluim@gmail.com>
Wed, 15 Feb 2023 15:05:50 +0000 (16:05 +0100)
committerRobert Pluim <rpluim@gmail.com>
Wed, 15 Feb 2023 15:24:19 +0000 (16:24 +0100)
* ido.el (ido-use-filename-at-point): Document 'guess' value better.

lisp/ido.el

index 98633d5d798106afc6e813de09fd26d853a2ebf0..00a2e57f7bade06e8e43fc437e567b12775ecdf9 100644 (file)
@@ -565,11 +565,12 @@ the `ido-work-directory-list' list."
 
 (defcustom ido-use-filename-at-point nil
   "Non-nil means that Ido shall look for a filename at point.
-May use `ffap-guesser' to guess whether text at point is a filename.
-If found, use that as the starting point for filename selection."
+Value `guess' means use `ffap-guesser' to guess whether text at
+point is a filename.  If found, use that as the starting point
+for filename selection."
   :type '(choice
          (const :tag "Disabled" nil)
-         (const :tag "Guess filename" guess)
+         (const :tag "Guess filename using ffap-guesser" guess)
          (other :tag "Use literal filename" t)))