:ALT_TITLE: Prolog Packages
:END:
+You can install SWI-Prolog add-ons, also known as /packs/, with the
+following command:
+
#+FINDEX: sweeprolog-pack-install
-The command =M-x sweeprolog-pack-install= can be used to install
-or upgrade a SWI-Prolog =pack=. When selecting a =pack= to install, the
-completion candidates are annotated with description and the version
-of each package.
+- Command: sweeprolog-pack-install :: Install or upgrade a Prolog pack.
+
+This command prompts from a pack name, with completion, and installs it
+or upgrades it to the latest available version. (See also [[https://www.swi-prolog.org/pldoc/man?section=packs][Packs]] in the
+SWI-Prolog manual.)
+
* Contributing
:PROPERTIES:
atom_string(Version0, Version),
maplist(atom_string, URLS0, URLS).
-sweep_pack_install(PackName, []) :-
- atom_string(Pack, PackName), pack_install(Pack, [silent(true), upgrade(true), interactive(false)]).
+sweep_pack_install(PackName, true) :-
+ atom_string(Pack, PackName),
+ pack_install(Pack, [silent(true), upgrade(true), interactive(false)]).
sweep_colourise_query([String|Offset], _) :-
prolog_colourise_query(String, module(sweep), sweep_handle_fragment_(Offset)).
(string :tag "History file name")
(function :tag "Function returning history file name")))
+(defcustom sweeprolog-pack-description-max-width 80
+ "Maximum pack description width to display during completion.
+
+This is an integer specifying a string width at which
+`sweeprolog-pack-install' truncates pack descriptions annotating
+pack completion candidates."
+ :package-version '((sweeprolog "0.22.2"))
+ :type 'integer)
+
;;;; Keymaps
(defvar sweeprolog-mode-map
(defun sweeprolog-read-pack-name ()
"Read a Prolog pack name from the minibuffer, with completion."
(let* ((col (sweeprolog-packs-collection))
+ (max-pack (seq-max (mapcar #'string-width (mapcar #'car col))))
+ (max-desc (min sweeprolog-pack-description-max-width
+ (seq-max (mapcar #'string-width
+ (mapcar #'cadr col)))))
(completion-extra-properties
(list :annotation-function
- (lambda (key)
- (let* ((val (cdr (assoc-string key col)))
- (des (car val))
- (ver (cadr val)))
- (concat (make-string (max 0 (- 32 (length key))) ? )
- (if des
- (concat ver (make-string (max 0 (- 16 (length ver))) ? ) des)
- ver)))))))
+ (lambda (pack)
+ (message pack)
+ (let* ((info (alist-get pack col nil nil #'string=))
+ (des (car info))
+ (ver (cadr info)))
+ (concat
+ (propertize " " 'display
+ `(space :align-to
+ ,(+ 2 max-pack)))
+ (truncate-string-to-width
+ des sweeprolog-pack-description-max-width
+ nil nil t)
+ (propertize " " 'display
+ `(space :align-to
+ ,(+ 2 max-pack 2 max-desc)))
+ ver))))))
(completing-read sweeprolog-read-pack-prompt col)))
;;;###autoload