[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/treesit-fold 5ebe65e85d 262/417: docs: Fix more typo
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/treesit-fold 5ebe65e85d 262/417: docs: Fix more typo |
Date: |
Mon, 1 Jul 2024 10:02:32 -0400 (EDT) |
branch: elpa/treesit-fold
commit 5ebe65e85d8a65ced4e727917766d5054f9cdc30
Author: JenChieh <jcs090218@gmail.com>
Commit: JenChieh <jcs090218@gmail.com>
docs: Fix more typo
---
README.md | 53 ++++++++++++++++++++++++++---------------------------
1 file changed, 26 insertions(+), 27 deletions(-)
diff --git a/README.md b/README.md
index 8f7d4057c9..737aeedb0b 100644
--- a/README.md
+++ b/README.md
@@ -21,31 +21,30 @@ to provide code folding based on the tree-sitter syntax
tree.
**Table of Contents**
-- [ts-fold](#ts-fold)
- - [💾 Installation](#-installation)
- - [🔍 Method 1. with `straight.el` and
`use-package`:](#-method-1-with-straightel-and-use-package)
- - [🔍 Method 2. Manual](#-method-2-manual)
- - [🖥 Usage](#-usage)
- - [📇 Commands](#-commands)
- - [🔨 Supported languages](#-supported-languages)
- - [📝 Customization](#-customization)
- - [⚪ Folding on new nodes](#-folding-on-new-nodes)
- - [❔ Example](#-example)
- - [↔ Offset](#-offset)
- - [🔍 Writing new fold functions](#-writing-new-fold-functions)
- - [🔌 Plugins](#-plugins)
- - [⚖️ Indicators Mode](#-indicators-mode)
- - [💾 Installation](#-installation-1)
- - [🖥 Usage](#-usage-1)
- - [📝 Summary](#-summary)
- - [🖥 Usage](#-usage-2)
- - [📝 Customization](#-customization-1)
- - [🌫️ Line-Comment folding](#-line-comment-folding)
- - [🖥 Usage](#-usage-3)
- - [🔰 Contribute](#-contribute)
- - [❓ How to add a folding parser?](#-how-to-add-a-folding-parser)
- - [🔍 Where can I look for tree-sitter
node?](#-where-can-i-look-for-tree-sitter-node)
- - [❓ How to create a summary parser?](#-how-to-create-a-summary-parser)
+- [💾 Installation](#-installation)
+ - [🔍 Method 1. with `straight.el` and
`use-package`:](#-method-1-with-straightel-and-use-package)
+ - [🔍 Method 2. Manual](#-method-2-manual)
+- [🖥 Usage](#-usage)
+ - [📇 Commands](#-commands)
+ - [🔨 Supported languages](#-supported-languages)
+- [📝 Customization](#-customization)
+ - [⚪ Folding on new nodes](#-folding-on-new-nodes)
+ - [❔ Example](#-example)
+ - [↔ Offset](#-offset)
+ - [🔍 Writing new fold functions](#-writing-new-fold-functions)
+- [🔌 Plugins](#-plugins)
+ - [⚖️ Indicators Mode](#-indicators-mode)
+ - [💾 Installation](#-installation-1)
+ - [🖥 Usage](#-usage-1)
+ - [📝 Summary](#-summary)
+ - [🖥 Usage](#-usage-2)
+ - [📝 Customization](#-customization-1)
+ - [🌫️ Line-Comment folding](#-line-comment-folding)
+ - [🖥 Usage](#-usage-3)
+- [🔰 Contribute](#-contribute)
+ - [❓ How to add a folding parser?](#-how-to-add-a-folding-parser)
+ - [🔍 Where can I look for tree-sitter
node?](#-where-can-i-look-for-tree-sitter-node)
+ - [❓ How to create a summary parser?](#-how-to-create-a-summary-parser)
<!-- markdown-toc end -->
@@ -146,7 +145,7 @@ that others may benefit from better folding in the future!
### ⚪ Folding on new nodes
-Ts-fold defines all its folding definitions in the the variable
+Ts-fold defines all its folding definitions in the variable
`ts-fold-range-alist` which is an alist with the key of the alist being the
mode and the value being another alist of fold definitions.
@@ -291,7 +290,7 @@ go ahead and add new fold definitions to
`ts-fold-range-alist` and be good to go
#### ❔ Example
-Let's look at a quick example of adding a new folding definition. Lets say you
+Let's look at a quick example of adding a new folding definition. Let's say you
want to add folding to `go-mode`'s `field_declaration_list`. The folding
definition that is needed will be
`'(field_declaration_list . ts-fold-range-seq)`. To add this to the
- [nongnu] elpa/treesit-fold dcd5b9fe5c 212/417: Merge pull request #9 from jcs-elpa/docs/tutorial, (continued)
- [nongnu] elpa/treesit-fold dcd5b9fe5c 212/417: Merge pull request #9 from jcs-elpa/docs/tutorial, ELPA Syncer, 2024/07/01
- [nongnu] elpa/treesit-fold 33e3fb561e 219/417: docs: changelog, ELPA Syncer, 2024/07/01
- [nongnu] elpa/treesit-fold 17d131f69a 228/417: feat(ocaml): Support for ocaml-mode and caml-mode (#24), ELPA Syncer, 2024/07/01
- [nongnu] elpa/treesit-fold 28409a0cee 232/417: docs: Update repo link (#32), ELPA Syncer, 2024/07/01
- [nongnu] elpa/treesit-fold 017402713b 236/417: Fix typo/grammar in error message (#34), ELPA Syncer, 2024/07/01
- [nongnu] elpa/treesit-fold fb91989a94 238/417: Setup node is no longer required, ELPA Syncer, 2024/07/01
- [nongnu] elpa/treesit-fold f581febc6f 243/417: Update README (#39), ELPA Syncer, 2024/07/01
- [nongnu] elpa/treesit-fold a5ba7ce60b 248/417: README.md: fix typo (#43), ELPA Syncer, 2024/07/01
- [nongnu] elpa/treesit-fold 5b0535c1af 256/417: test(Makefile); Ignore package-lint test, ELPA Syncer, 2024/07/01
- [nongnu] elpa/treesit-fold cde9c90b07 259/417: docs(README.md): Metnion YAML support, ELPA Syncer, 2024/07/01
- [nongnu] elpa/treesit-fold 5ebe65e85d 262/417: docs: Fix more typo,
ELPA Syncer <=
- [nongnu] elpa/treesit-fold 8386b5b714 280/417: feat: Add Markdown support (#67), ELPA Syncer, 2024/07/01
- [nongnu] elpa/treesit-fold 630b896b3f 277/417: feat: Add Haskell support (#65), ELPA Syncer, 2024/07/01
- [nongnu] elpa/treesit-fold 08abd98ba4 272/417: feat: Add Dart support (#62), ELPA Syncer, 2024/07/01
- [nongnu] elpa/treesit-fold d20c3663f9 380/417: Update desc, ELPA Syncer, 2024/07/01
- [nongnu] elpa/treesit-fold 2bb351bcf3 385/417: feat: Add on fold hook, ELPA Syncer, 2024/07/01
- [nongnu] elpa/treesit-fold c14893d4ff 343/417: perf: Use built-in function for indentation, ELPA Syncer, 2024/07/01
- [nongnu] elpa/treesit-fold 858fb6fe1c 325/417: Update CHANGELOG.md, ELPA Syncer, 2024/07/01
- [nongnu] elpa/treesit-fold 581af904c1 286/417: feat: Add GDScript support (#72), ELPA Syncer, 2024/07/01
- [nongnu] elpa/treesit-fold 07da6590aa 348/417: feat: Add LLVM MIR support, ELPA Syncer, 2024/07/01
- [nongnu] elpa/treesit-fold 03644fb5fa 341/417: fix(indicators): Rely on range itself, ELPA Syncer, 2024/07/01