]> git.eshelyaron.com Git - emacs.git/commitdiff
Minor doc fixes in treesit.el
authorStefan Kangas <stefankangas@gmail.com>
Fri, 28 Oct 2022 04:38:00 +0000 (06:38 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Fri, 28 Oct 2022 14:01:01 +0000 (16:01 +0200)
* lisp/treesit.el (treesit-font-lock-rules)
(treesit-font-lock-settings): Minor doc fixes.

lisp/treesit.el

index 3f9b9de1eb9662954a45adccf5ac36b73e7410d3..8db47048231b7804db5be11e48c5d332e1e93b9a 100644 (file)
@@ -395,7 +395,7 @@ For changes to this variable to take effect, run
 The exact format of this variable is considered internal.  One
 should always use `treesit-font-lock-rules' to set this variable.
 
-Each SETTING is of form
+Each SETTING has the form:
 
     (QUERY ENABLE FEATURE OVERRIDE)
 
@@ -435,18 +435,18 @@ configure the query (and only that query).  For example,
      \"(script_element) @font-lock-builtin-face\")
 
 For each QUERY, a :language keyword and a :feature keyword is
-required. Each query's :feature is a symbol summarizing what does
+required.  Each query's :feature is a symbol summarizing what does
 the query fontify.  It is used to allow users to enable/disable
 certain features.  See `treesit-font-lock-kind-list' for more.
 Other keywords include:
 
-  KEYWORD    VALUE    DESCRIPTION
-  :override  nil      If the region already has a face,
-                      discard the new face
-             t        Always apply the new face
-             append   Append the new face to existing ones
-             prepend  Prepend the new face to existing ones
-             keep     Fill-in regions without an existing face
+  KEYWORD    VALUE      DESCRIPTION
+  :override  nil        If the region already has a face,
+                        discard the new face.
+             t          Always apply the new face.
+             `append'   Append the new face to existing ones.
+             `prepend'  Prepend the new face to existing ones.
+             `keep'     Fill-in regions without an existing face.
 
 Capture names in QUERY should be face names like
 `font-lock-keyword-face'.  The captured node will be fontified
@@ -555,7 +555,7 @@ If LOUDLY is non-nil, display some debugging information."
         (ignore activate)
         (let ((captures (treesit-query-capture
                          node query
-                         ;; Specifying the range is important. More
+                         ;; Specifying the range is important.  More
                          ;; often than not, NODE will be the root
                          ;; node, and if we don't specify the range,
                          ;; we are basically querying the whole file.