diff options
author | Riley Bruins <ribru17@hotmail.com> | 2025-02-04 09:25:03 -0800 |
---|---|---|
committer | Christian Clason <ch.clason+github@icloud.com> | 2025-02-05 09:29:31 +0100 |
commit | 09f9f0a94625002f4c70efbdf858fe6918cbc9c6 (patch) | |
tree | 2b92ce243a57a30d2e6312465b033706add495a6 /runtime/doc | |
parent | d769c340b95b731d9a589345741070f7988d7149 (diff) | |
download | rneovim-09f9f0a94625002f4c70efbdf858fe6918cbc9c6.tar.gz rneovim-09f9f0a94625002f4c70efbdf858fe6918cbc9c6.tar.bz2 rneovim-09f9f0a94625002f4c70efbdf858fe6918cbc9c6.zip |
feat(treesitter): show which nodes are missing in InspectTree
Now `:InspectTree` will show missing nodes as e.g. `(MISSING identifier)`
or `(MISSING ";")` rather than just `(identifier)` or `";"`. This is
doable because the `MISSING` keyword is now valid query syntax.
Co-authored-by: Christian Clason <c.clason@uni-graz.at>
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/news.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/doc/news.txt b/runtime/doc/news.txt index 4e573197b7..fda37852d6 100644 --- a/runtime/doc/news.txt +++ b/runtime/doc/news.txt @@ -381,6 +381,7 @@ TREESITTER queries in addition to overriding. • |LanguageTree:is_valid()| now accepts a range parameter to narrow the scope of the validity check. +• |:InspectTree| now shows which nodes are missing. TUI |