]> git.eshelyaron.com Git - dict.git/commitdiff
Recognize and highlight XPCE string comments as docstrings
authorEshel Yaron <me@eshelyaron.com>
Fri, 25 Nov 2022 14:39:09 +0000 (16:39 +0200)
committerEshel Yaron <me@eshelyaron.com>
Fri, 25 Nov 2022 14:39:09 +0000 (16:39 +0200)
* sweeprolog.el (sweeprolog-analyze-fragment-to-faces): recognize
string comments.

sweeprolog.el

index d9bce9ba4124908830299d2ee8c77c0701e1f620..d5ecf6ec66875b66d1f4aca858faa70770c0f658 100644 (file)
@@ -1761,6 +1761,13 @@ resulting list even when found in the current clause."
   (:inherit default)
   "Directives.")
 
+(sweeprolog-defface
+  string-comment
+  (:inherit font-lock-doc-face)
+  (:inherit font-lock-doc-face :foreground "darkgreen")
+  (:inherit font-lock-doc-face :foreground "green")
+  "String comments.")
+
 (sweeprolog-defface
   structured-comment
   (:inherit font-lock-doc-face)
@@ -1804,6 +1811,9 @@ resulting list even when found in the current clause."
     (`("comment" . "structured")
      (list (list beg end nil)
            (list beg end (sweeprolog-structured-comment-face))))
+    (`("comment" . "string")
+     (list (list beg end nil)
+           (list beg end (sweeprolog-string-comment-face))))
     (`("comment" . ,_)
      (list (list beg end nil)
            (list beg end (sweeprolog-comment-face))))
@@ -2019,7 +2029,7 @@ resulting list even when found in the current clause."
     ("grammar_rule"
      (list (list beg end nil) (list beg end (sweeprolog-grammar-rule-face))))
     ("method"
-     (list (list beg end (sweeprolog-method-face))))
+     (list (list beg end nil) (list beg end (sweeprolog-method-face))))
     ("class"
      (list (list beg end (sweeprolog-class-face))))))