invoked Elisp function. The =sweep_funcall/2= variant invokes the Elisp
function without any arguments.
+* Editing Prolog code
+:PROPERTIES:
+:CUSTOM_ID: editing-prolog-code
+:END:
+
+#+CINDEX: sweep-mode
+#+FINDEX: sweep-mode
+#+VINDEX: sweep-mode
+=sweep= includes a dedicated major mode for reading and editing Prolog
+code, called =sweep-mode=. To activate this mode in a buffer, type =M-x
+sweep-mode=. To instruct Emacs to always open Prolog files in
+=sweep-mode=, modify the Emacs variable =auto-mode-alist= like so:
+
+#+begin_src emacs-lisp
+ (add-to-list 'auto-mode-alist '("\\.pl\\'" . sweep-mode))
+ (add-to-list 'auto-mode-alist '("\\.plt\\'" . sweep-mode))
+#+end_src
+
* The Prolog top-level
:PROPERTIES:
:CUSTOM_ID: prolog-top-level
;; Maintainer: Eshel Yaron <me(at)eshelyaron(dot)com>
;; Keywords: prolog languages extensions
;; URL: https://git.sr.ht/~eshel/sweep
-;; Package-Version: 0.1.0
+;; Package-Version: 0.1.1
;; Package-Requires: ((emacs "27"))
;; This file is NOT part of GNU Emacs.
(arg (cddr args)))
(with-silent-modifications
(pcase arg
+ (`("comment" . ,k)
+ (put-text-property beg end 'font-lock-face
+ (pcase k
+ ("structured" sweep-structured-comment-face)
+ (_ sweep-comment-face))))
(`("head" . ,h)
(put-text-property beg end 'font-lock-face
(pcase h
("string" (put-text-property beg end 'font-lock-face sweep-string-face))
("module" (put-text-property beg end 'font-lock-face sweep-module-face))
("neck" (put-text-property beg end 'font-lock-face sweep-neck-face))
- ("comment" (put-text-property beg end 'font-lock-face sweep-comment-face))
("hook" (put-text-property beg end 'font-lock-face sweep-hook-face))
("qq_type" (put-text-property beg end 'font-lock-face sweep-qq-type-face))
("qq_sep" (put-text-property beg end 'font-lock-face sweep-qq-sep-face))
(defvar-keymap sweep-mode-map
:doc "Keymap for `sweep-mode'."
- "C-c C-c" #'sweep-colourise-buffer)
+;;"C-c C-l" #'sweep-load-buffer
+ "C-c C-c" #'sweep-colourise-buffer
+ "C-c C-t" #'sweep-top-level)
(defun sweep-indent-line ()
(interactive)
Start is Start0 + Offset,
End is End0 + Offset,
atom_string(Message0, Message).
+sweep_color_normalized_(Offset, comment, [Kind0|_], ["comment"|Kind]) :-
+ !,
+ atom_string(Kind0, Kind).
sweep_color_normalized_(_, Nom0, _, Nom) :-
atom_string(Nom0, Nom).