aboutsummaryrefslogtreecommitdiff
path: root/book/src/guides
diff options
context:
space:
mode:
authorJJ2023-11-01 04:33:05 +0000
committerJJ2023-11-01 04:33:05 +0000
commit9663740245e2c18e160f6563d2f114f59d27b7c9 (patch)
tree747339a20cbb18011a34259241b3bb3baed96eb3 /book/src/guides
parenta4394d502f8ee551660af5c8f04545cca349efb9 (diff)
Add support for Agda, update default Nim LSP23.10.1
Diffstat (limited to 'book/src/guides')
-rw-r--r--book/src/guides/adding_languages.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/book/src/guides/adding_languages.md b/book/src/guides/adding_languages.md
index 93ec013f..0763a3c5 100644
--- a/book/src/guides/adding_languages.md
+++ b/book/src/guides/adding_languages.md
@@ -36,6 +36,7 @@ below.
3. Refer to the
[tree-sitter website](https://tree-sitter.github.io/tree-sitter/syntax-highlighting#queries)
for more information on writing queries.
+4. A list of highlight captures can be found [on the themes page](https://docs.helix-editor.com/themes.html#scopes).
> 💡 In Helix, the first matching query takes precedence when evaluating
> queries, which is different from other editors such as Neovim where the last
@@ -51,3 +52,4 @@ below.
grammars.
- If a parser is causing a segfault, or you want to remove it, make sure to
remove the compiled parser located at `runtime/grammars/<name>.so`.
+- If you are attempting to add queries and Helix is unable to locate them, ensure that the environment variable `HELIX_RUNTIME` is set to the location of the `runtime` folder you're developing in.