diff options
author | Juri Linkov <juri@linkov.net> | 2023-01-04 09:57:06 +0200 |
---|---|---|
committer | Juri Linkov <juri@linkov.net> | 2023-01-04 09:57:06 +0200 |
commit | 6b5831c6964873025dabfb924bd23dfc72138c5d (patch) | |
tree | df25a9340f8342d0e85eba0fdd0bd6c514275051 /admin/notes/tree-sitter/html-manual/Retrieving-Node.html | |
parent | 651927ac3916f601e3ea29281572621044e08fb7 (diff) | |
download | emacs-6b5831c6964873025dabfb924bd23dfc72138c5d.tar.gz emacs-6b5831c6964873025dabfb924bd23dfc72138c5d.tar.bz2 emacs-6b5831c6964873025dabfb924bd23dfc72138c5d.zip |
Tree-sitter doc fixes (bug#60524)
* doc/lispref/modes.texi (Parser-based Font Lock):
Replace :lang with :language.
* doc/lispref/parsing.texi (Language Grammar): Replace
treesit-load-suffixes with dynamic-library-suffixes.
(Retrieving Nodes): Fix function names.
(Tree-sitter Major Modes): Fix treesit-ready-p args.
Fix pxref to Parser-based Indentation.
(Tree-sitter C API): Fix function names.
* lisp/treesit.el (treesit--simple-indent-eval): Remove cond BODY
duplicated from CONDITION.
(treesit)<define-short-documentation-group>: Fix function names.
Diffstat (limited to 'admin/notes/tree-sitter/html-manual/Retrieving-Node.html')
-rw-r--r-- | admin/notes/tree-sitter/html-manual/Retrieving-Node.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/admin/notes/tree-sitter/html-manual/Retrieving-Node.html b/admin/notes/tree-sitter/html-manual/Retrieving-Node.html index 58e87e8df7f..16eeb0b1091 100644 --- a/admin/notes/tree-sitter/html-manual/Retrieving-Node.html +++ b/admin/notes/tree-sitter/html-manual/Retrieving-Node.html @@ -201,13 +201,13 @@ is the string text. </p></dd></dl> <dl class="def"> -<dt id="index-treesit_002dnext_002dsibling"><span class="category">Function: </span><span><strong>treesit-next-sibling</strong> <em>node &optional named</em><a href='#index-treesit_002dnext_002dsibling' class='copiable-anchor'> ¶</a></span></dt> +<dt id="index-treesit_002dnext_002dsibling"><span class="category">Function: </span><span><strong>treesit-node-next-sibling</strong> <em>node &optional named</em><a href='#index-treesit_002dnext_002dsibling' class='copiable-anchor'> ¶</a></span></dt> <dd><p>This function finds the next sibling of <var>node</var>. If <var>named</var> is non-<code>nil</code>, it finds the next named sibling. </p></dd></dl> <dl class="def"> -<dt id="index-treesit_002dprev_002dsibling"><span class="category">Function: </span><span><strong>treesit-prev-sibling</strong> <em>node &optional named</em><a href='#index-treesit_002dprev_002dsibling' class='copiable-anchor'> ¶</a></span></dt> +<dt id="index-treesit_002dprev_002dsibling"><span class="category">Function: </span><span><strong>treesit-node-prev-sibling</strong> <em>node &optional named</em><a href='#index-treesit_002dprev_002dsibling' class='copiable-anchor'> ¶</a></span></dt> <dd><p>This function finds the previous sibling of <var>node</var>. If <var>named</var> is non-<code>nil</code>, it finds the previous named sibling. </p></dd></dl> @@ -221,13 +221,13 @@ assign <em>field names</em> to child nodes (see <a href="Language-Definitions.ht could have a <code>declarator</code> node and a <code>body</code> node. </p> <dl class="def"> -<dt id="index-treesit_002dchild_002dby_002dfield_002dname"><span class="category">Function: </span><span><strong>treesit-child-by-field-name</strong> <em>node field-name</em><a href='#index-treesit_002dchild_002dby_002dfield_002dname' class='copiable-anchor'> ¶</a></span></dt> +<dt id="index-treesit_002dchild_002dby_002dfield_002dname"><span class="category">Function: </span><span><strong>treesit-node-child-by-field-name</strong> <em>node field-name</em><a href='#index-treesit_002dchild_002dby_002dfield_002dname' class='copiable-anchor'> ¶</a></span></dt> <dd><p>This function finds the child of <var>node</var> whose field name is <var>field-name</var>, a string. </p> <div class="example"> <pre class="example">;; Get the child that has "body" as its field name. -(treesit-child-by-field-name node "body") +(treesit-node-child-by-field-name node "body") ⇒ #<treesit-node (compound_statement) in 45-89> </pre></div> </dd></dl> @@ -237,7 +237,7 @@ could have a <code>declarator</code> node and a <code>body</code> node. <span id="index-syntax-tree-nodes_002c-by-position"></span> <dl class="def"> -<dt id="index-treesit_002dfirst_002dchild_002dfor_002dpos"><span class="category">Function: </span><span><strong>treesit-first-child-for-pos</strong> <em>node pos &optional named</em><a href='#index-treesit_002dfirst_002dchild_002dfor_002dpos' class='copiable-anchor'> ¶</a></span></dt> +<dt id="index-treesit_002dfirst_002dchild_002dfor_002dpos"><span class="category">Function: </span><span><strong>treesit-node-first-child-for-pos</strong> <em>node pos &optional named</em><a href='#index-treesit_002dfirst_002dchild_002dfor_002dpos' class='copiable-anchor'> ¶</a></span></dt> <dd><p>This function finds the first child of <var>node</var> that extends beyond buffer position <var>pos</var>. “Extends beyond” means the end of the child node is greater or equal to <var>pos</var>. This function only looks |