completed to one or more variable names that appear elsewhere in the
current clause, ~completion-at-point~ suggests matching variable names
as completion candidates.
-- Predicate completion :: If the text before point can be completed to
- a predicate call, ~completion-at-point~ suggests matching predicates
- as completion candidates.
+- Predicate completion :: If point is at a callable position,
+ ~completion-at-point~ suggests matching predicates as completion
+ candidates.
+- Atom completion :: If point is at a non-callable,
+ ~completion-at-point~ suggests matching atoms as completion
+ candidates.
** Context-Based Term Insertion
:PROPERTIES:
the names and modes of its arguments, when available. E.g. say
~foo(+Bar, -Baz)~ instead of ~foo/2~.
-- Improve the behavior of predicate completion in the middle of a functor :: When
- invoking predicate completion in the middle of a functor,
- e.g. ~foo<|>bar(~ (where ~<|>~ designates the location of the cursor),
- we should take into account the part that comes after the cursor and
- either restrict completion to candidates that match it as a suffix,
- or delete it after completion.
-
- Make predicate completion aware of module-qualification :: predicate
completion should detect when the prefix it's trying to complete
starts with a module-qualification ~foo:ba<|>~ and restrict completion
'(sweeprolog-undefined-default-face
sweeprolog-body-default-face)))))
+(ert-deftest complete-atom ()
+ "Tests completing atoms."
+ (let ((temp (make-temp-file "sweeprolog-test"
+ nil
+ ".pl"
+ "
+baz(Baz) :- Baz = emacsc
+"
+ )))
+ (find-file-literally temp)
+ (sweeprolog-mode)
+ (goto-char (point-max))
+ (backward-char)
+ (call-interactively #'completion-at-point)
+ (should (string= (buffer-string)
+ "
+baz(Baz) :- Baz = emacsclient
+"
+ ))))
(ert-deftest complete-predicate ()
"Tests completing predicate calls."
(sweeprolog-mode)
(goto-char (point-max))
(backward-char)
- (call-interactively #'sweeprolog-completion-at-point)
+ (call-interactively #'completion-at-point)
(should (string= (buffer-string)
"
baz(Baz) :- findall(X, b_getval(_, _)
(goto-char (point-max))
(backward-word)
(forward-word)
- (call-interactively #'sweeprolog-completion-at-point)
+ (call-interactively #'completion-at-point)
(should (string= (buffer-string)
"
baz(Baz) :- bar(Baz).
;; Maintainer: Eshel Yaron <~eshel/dev@lists.sr.ht>
;; Keywords: prolog languages extensions
;; URL: https://git.sr.ht/~eshel/sweep
-;; Package-Version: 0.8.6
+;; Package-Version: 0.8.7
;; Package-Requires: ((emacs "28.1"))
;; This file is NOT part of GNU Emacs.
#'flymake-show-diagnostics-buffer))
(define-key map (kbd "C-M-^") #'kill-backward-up-list)
(define-key map (kbd "C-M-m") #'sweeprolog-insert-term-dwim)
- (define-key map (kbd "C-M-i") #'sweeprolog-completion-at-point)
(define-key map (kbd "M-p") #'sweeprolog-backward-predicate)
(define-key map (kbd "M-n") #'sweeprolog-forward-predicate)
(define-key map (kbd "M-h") #'sweeprolog-mark-predicate)
(defvar sweeprolog-top-level-mode-map
(let ((map (make-sparse-keymap)))
- (define-key map (kbd "C-M-i") #'sweeprolog-completion-at-point)
(define-key map (kbd "C-c C-c") #'sweeprolog-top-level-signal-current)
map)
"Keymap for `sweeprolog-top-level-mode'.")
;;;; Completion at point
(defvar sweeprolog-completion-at-point-functions
- '((sweeprolog-predicate-completion-at-point
- ?p "predicate" "Predicate name")
- (sweeprolog-atom-completion-at-point
- ?a "atom" "Atom")
- (sweeprolog-module-completion-at-point
- ?m "module" "Module name")
- (sweeprolog-variable-completion-at-point
- ?v "variable" "Variable name")))
+ '(sweeprolog-atom-completion-at-point
+ sweeprolog-predicate-completion-at-point
+ sweeprolog-variable-completion-at-point))
(defun sweeprolog-atoms-collection (&optional sub)
"Return a list of atom completion candidates matchitng SUB."
:annotation-function
(lambda (_) " Var"))))))
-(defun sweeprolog-module-completion-at-point ()
- "Prolog module name completion backend for `completion-at-point'."
- (when-let ((bounds (bounds-of-thing-at-point 'symbol))
- (beg (car bounds))
- (end (cdr bounds)))
- (when (and (<= beg (point) end)
- (let ((first (char-after beg)))
- (not (or (sweeprolog--char-uppercase-p first)
- (= first ?_)))))
- (when-let ((col (sweeprolog-modules-collection)))
- (list beg end (mapcar #'car col)
- :exclusive 'no
- :annotation-function
- (lambda (_) " module"))))))
-
(defun sweeprolog-atom-completion-at-point ()
"Prolog atom name completion backend for `completion-at-point'."
(when-let ((bounds (bounds-of-thing-at-point 'symbol))
(let ((first (char-after beg)))
(not (or (sweeprolog--char-uppercase-p first)
(= first ?_)))))
- (when-let ((col (sweeprolog-atoms-collection
- (buffer-substring-no-properties beg end))))
+ (when-let ((sub (buffer-substring-no-properties beg end))
+ (col (seq-filter (lambda (atom)
+ (not (string= atom sub)))
+ (sweeprolog-atoms-collection sub))))
(list beg end col
:exclusive 'no
:annotation-function
context)))
(defun sweeprolog-predicate-completion-at-point ()
+ "Prolog predicate completion backend for `completion-at-point'."
(when-let ((bounds (bounds-of-thing-at-point 'symbol))
(beg (car bounds))
(end (cdr bounds)))
:annotation-function
(lambda (_) " Predicate"))))))
-(defun sweeprolog-completion-at-point (&optional funs)
- (interactive
- (list
- (and current-prefix-arg
- (list
- (let ((choice (read-multiple-choice
- "Completion kind: "
- (mapcar
- #'cdr
- sweeprolog-completion-at-point-functions))))
- (caar (seq-filter
- (lambda (capf)
- (equal (cdr capf) choice))
- sweeprolog-completion-at-point-functions)))))))
- (let ((completion-at-point-functions
- (or funs
- (append (mapcar #'car
- sweeprolog-completion-at-point-functions)
- completion-at-point-functions))))
- (completion-at-point)))
;;;; Packages
comint-delimiter-argument-list '(?,)
comment-start "%")
(add-hook 'post-self-insert-hook #'sweeprolog-top-level--post-self-insert-function nil t)
+ (dolist (capf sweeprolog-completion-at-point-functions)
+ (add-hook 'completion-at-point-functions capf nil t))
(setq sweeprolog-top-level-timer (run-with-idle-timer 0.2 t #'sweeprolog-colourise-query (current-buffer)))
(add-hook 'kill-buffer-hook
(lambda ()
(setq sweeprolog--analyze-buffer-duration (float-time (time-since time))))
(add-hook 'xref-backend-functions #'sweeprolog--xref-backend nil t)
(add-hook 'file-name-at-point-functions #'sweeprolog-file-at-point nil t)
+ (dolist (capf sweeprolog-completion-at-point-functions)
+ (add-hook 'completion-at-point-functions capf nil t))
(when sweeprolog-analyze-buffer-on-idle
(setq sweeprolog--timer
(run-with-idle-timer