]> git.eshelyaron.com Git - sweep.git/commitdiff
Add grouping and affixation functions for module completion
authorEshel Yaron <me@eshelyaron.com>
Tue, 27 Jun 2023 18:36:45 +0000 (21:36 +0300)
committerEshel Yaron <me@eshelyaron.com>
Tue, 27 Jun 2023 18:41:21 +0000 (21:41 +0300)
This adds a 'group-function' and an 'affixation-function' to
'sweeprolog-module-completion-table', for Emacs 28+

The affixation API allows us to compute the appropriate padding to
insert before annotations in a cleaner way.  Modules are group
according to their classes.

* sweep.pl (sweep_module_class/2): New predicate.

* sweeprolog.el (sweeprolog-module-minibuffer-annotation-1):
Extract helper function from...
(sweeprolog-module-minibuffer-annotation): ...here. Adapt.
(sweeprolog-module-minibuffer-affixation)
(sweeprolog-module-minibuffer-group): New functions.
(sweeprolog-module-completion-table): Use them.

sweep.pl
sweeprolog.el

index 72465d7375125b14e2c78987a2de422e6bacafbb..2ecebe0773eb85c3b962aa6eb13c090f2a485cdd 100644 (file)
--- a/sweep.pl
+++ b/sweep.pl
@@ -89,7 +89,8 @@
             sweep_breakpoint_file/2,
             sweep_expand_macro/2,
             sweep_module_annotation/2,
-            sweep_is_module/2
+            sweep_is_module/2,
+            sweep_module_class/2
           ]).
 
 :- use_module(library(pldoc)).
@@ -259,6 +260,10 @@ sweep_documentation_modes([mode(Mode0, Args)|_], OneLiner, Docs) :-
 sweep_documentation_modes([_|T], OneLiner, Docs) :-
     sweep_documentation_modes(T, OneLiner, Docs).
 
+sweep_module_class(M0, C) :-
+    atom_string(M, M0),
+    module_property(M, class(C0)),
+    atom_string(C0, C).
 
 sweep_module_path(ModuleName, Path) :-
     atom_string(Module, ModuleName),
index fd13c27a368db8a1f2e1d267a7940d23539d586a..0b65ee36a13be02c608ef04dc098dfa37dbf9cb3 100644 (file)
@@ -1184,21 +1184,54 @@ the prefix argument."
 FILE is the file name of MODULE and DESC is its description, or nil."
   (sweeprolog--query-once "sweep" "sweep_module_annotation" module))
 
-(defun sweeprolog-module-minibuffer-annotation (module)
-  "Annotation function for module completion candidates.
-
-Return a string used to annotate MODULE."
+(defun sweeprolog-module-minibuffer-annotation-1 (module pad)
+  "Return a string used to annotate MODULE while padding to PAD."
   (let* ((width (string-width module))
          (file-desc (sweeprolog-module-annotation module))
          (file (car file-desc))
          (desc (cdr file-desc)))
-    (concat
-     (make-string
-      (+ (max (- (or sweeprolog--module-max-width width) width) 0) 2)
-      ?\s)
-     (when file (concat file (when desc (concat ": "))))
-     (replace-regexp-in-string (rx "library(" (+ graph) "): ") ""
-                               (or desc "")))))
+    (propertize
+     (concat
+      (make-string
+       (+ (- sweeprolog--module-max-width width) 2)
+       ?\s)
+      (when file (concat file
+                         (when desc (concat ": "))))
+      (replace-regexp-in-string (rx "library(" (+ graph) "): ") ""
+                                (or desc "")))
+     'face 'sweeprolog-structured-comment)))
+
+(defun sweeprolog-module-minibuffer-annotation (module)
+  "Annotation function for module completion candidates.
+
+Return a string used to annotate MODULE."
+  (sweeprolog-module-minibuffer-annotation-1 module
+                                             (or sweeprolog--module-max-width
+                                                 (string-width module))))
+
+(defun sweeprolog-module-minibuffer-affixation (completions)
+  "Affixation function for module completion candidates.
+
+Map COMPLETIONS to a list of elements (CAND PRE SUF), where CAND
+is a candidate string, PRE is a prefix string to display before
+the candidate and SUF is its suffix to display after it."
+  (when completions
+    (let ((module-max-width (seq-max (mapcar #'string-width
+                                             completions))))
+      (mapcar (lambda (cand)
+                (list cand ""
+                      (sweeprolog-module-minibuffer-annotation-1
+                       cand module-max-width)))
+              completions))))
+
+(defun sweeprolog-module-minibuffer-group (completion transform)
+  "Grouping function for module completion candidates.
+
+See (info \"(elisp)Programmed Completion\") for the meaning of
+COMPLETION and TRANSFORM."
+  (if transform
+      completion
+    (sweeprolog--query-once "sweep" "sweep_module_class" completion)))
 
 (defun sweeprolog-module-p (mod)
   "Return non-nil if MOD is a known Prolog module."
@@ -1218,7 +1251,9 @@ STRING, PREDICATE and ACTION."
     '(metadata
       .
       ((category            . sweeprolog-module)
-       (annotation-function . sweeprolog-module-minibuffer-annotation))))
+       (annotation-function . sweeprolog-module-minibuffer-annotation)
+       (affixation-function . sweeprolog-module-minibuffer-affixation)
+       (group-function      . sweeprolog-module-minibuffer-group))))
    (t (complete-with-action action
                             (sweeprolog-modules-collection string)
                             string