]> git.eshelyaron.com Git - dict.git/commitdiff
Document sweeprolog-file-at-point, file-name-at-point-functions
authorEshel Yaron <me@eshelyaron.com>
Sun, 22 Jan 2023 20:04:15 +0000 (22:04 +0200)
committerEshel Yaron <me@eshelyaron.com>
Sun, 22 Jan 2023 20:04:15 +0000 (22:04 +0200)
README.org
sweeprolog.el

index a93aa3001d7e9dfb8cbe4db06e22a569b4a8f884..b5f1070e45e2a44fed678f61919e174624ffec50 100644 (file)
@@ -1094,19 +1094,32 @@ library directories.
 
 - Key: C-c C-o (sweeprolog-find-file-at-point) :: Resolve file
   specification at point and visit the specified file.
+- Function: sweeprolog-file-at-point &optional point :: Return the
+  file name specified by the Prolog file specification at POINT.
 
-You can follow file specifications that occur in =sweeprolog-mode=
-buffers with =C-c C-o= (or =M-x sweeprolog-find-file-at-point=) whenever
+You can follow file specifications that occur in ~sweeprolog-mode~
+buffers with ~C-c C-o~ (or ~M-x sweeprolog-find-file-at-point~) whenever
 point is over a valid file specification.  For example, consider a
-Prolog file buffer with the common directive =use_module/1=:
+Prolog file buffer with the common directive ~use_module/1~:
 
 #+begin_src prolog
   :- use_module(library(lists)).
 #+end_src
 
-With point in any position inside =library(lists)=, typing =C-c C-o= will
+With point in any position inside ~library(lists)~, typing ~C-c C-o~ will
 open the =lists.pl= file in the Prolog library.
 
+Sweep also extends Emacs's ~file-name-at-point-functions~ hook with the
+function ~sweeprolog-file-at-point~ that returns the resolved Prolog
+file specification at point, if any.  Emacs uses this hook to populate
+the "future history" of minibuffer prompts that read file names, such
+as the one you get when you type ~C-x C-f~ (~find-file~).  In particular
+this means that if point is in a Prolog file specification, you can
+type ~M-n~ after ~C-x C-f~ to populate the minibuffer with the
+corresponding file name.  You can then go ahead and visit the file by
+typing ~RET~, or you can edit the minibuffer contents and visit a nearby
+file instead.
+
 For more information about file specifications in SWI-Prolog, see
 [[https://www.swi-prolog.org/pldoc/doc_for?object=absolute_file_name/3][absolute_file_name/3]] in the SWI-Prolog manual.
 
@@ -1909,7 +1922,7 @@ loaded or auto-loadable Prolog predicate.
 :ALT_TITLE: File Spec Expansion
 :END:
 
-Sweep defines a handler for the Emacs function =expand-file-file= that
+Sweep defines a handler for the Emacs function =expand-file-name= that
 recognizes Prolog file specifications, such as =library(lists)=, and
 expands them to their corresponding absolute paths.  This means that
 one can use Prolog file specifications with Emacs's standard =find-file=
index 3876bfd3b75c8985a75f78da9eeeedfbbe939abe..a3502f8184507d2da96c875025879399f195e5aa 100644 (file)
@@ -2953,6 +2953,7 @@ buffer to load."
                    #'sweeprolog-file-name-handler))
 
 (defun sweeprolog-file-at-point (&optional point)
+  "Return the file name specified by the Prolog file spec at POINT."
   (setq point (or point (point)))
   (let ((fap nil))
     (sweeprolog-analyze-term-at-point