You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After 2cdc64d I get this error when starting neovim. cc @treywood
Failed to run `config` for kulala.nvim
/usr/share/nvim/runtime/lua/vim/treesitter/query.lua:252: Query error at 20:6. Invalid node type "res_redirect":
(res_redirect
^
# stacktrace:
- /usr/share/nvim/runtime/lua/vim/treesitter/query.lua:252 _in_ **fn**
- /usr/share/nvim/runtime/lua/vim/func/_memoize.lua:58 _in_ **parse**
- lua/kulala/parser/treesitter.lua:15
- lua/kulala/parser/init.lua:11
- lua/kulala/ui/init.lua:6
- lua/kulala/init.lua:1
- ~/.config/nvim/lua/plugins/kulala.lua:9 _in_ **config**
- /usr/share/nvim/runtime/filetype.lua:36
- /usr/share/nvim/runtime/filetype.lua:35
I tried fixing it via reinstalling TS syntax for http, but it haven't helped and :TSUpdate says all parsers are up to date.
Installation ~
- OK `tree-sitter` found 0.22.6 (parser generator, only needed for :TSInstallFromGrammar)
- OK `node` found v22.3.0 (only needed for :TSInstallFromGrammar)
- OK `git` executable found.
- OK `cc` executable found. Selected from { vim.NIL, "cc", "gcc", "clang", "cl", "zig" }
Version: cc (SUSE Linux) 14.2.0
- OK Neovim was compiled with tree-sitter runtime ABI version 14 (required >=13). Parsers must be compatible with runtime ABI.
Parser/Features H L F I J
- http ✓ . . . ✓
Removing lines with (res_redirect fixed the problem for me. Because http.so does not have a symbol res_redirect this probably require a modified version of a HTTP treesitter plugin.
this was added to the http tree-sitter parser last week (rest-nvim/tree-sitter-http#40), you should make sure that your parsers are up to date with :TSUpdate. I'll also work on a change to make these queries lazily parsed so that this doesn't affect people who haven't turned on tree-sitter parsing
After 2cdc64d I get this error when starting neovim. cc @treywood
I tried fixing it via reinstalling TS syntax for
http
, but it haven't helped and:TSUpdate
says all parsers are up to date.Removing lines with
(res_redirect
fixed the problem for me. Becausehttp.so
does not have a symbolres_redirect
this probably require a modified version of a HTTP treesitter plugin.The text was updated successfully, but these errors were encountered: