nvim-treesitter[yaml]: Error during compilation
Closed this issue · 4 comments
Misfit-s commented
Hi, the problem is in the title. Every time I open a file, this error pops up, and also the lsp server doesn't seem to work.
scottmckendry commented
Do you have a C compiler installed? The setup script should install zig but something may have gone wrong. Can you please send me the output of :checkhealth nvim-treesitter
?
Misfit-s commented
yes, I installed cygwin, but it didn't seem to help.
==============================================================================`
nvim-treesitter: require("nvim-treesitter.health").check()
Installation ~
- WARNING `tree-sitter` executable not found (parser generator, only needed for :TSInstallFromGrammar, not required for :TSInstall)
- OK `node` found v18.13.0 (only needed for :TSInstallFromGrammar)
- OK `git` executable found.
- OK `clang` executable found. Selected from { vim.NIL, "cc", "gcc", "clang", "cl", "zig" }
Version: compnerd.org clang version 15.0.0
- OK Neovim was compiled with tree-sitter runtime ABI version 14 (required >=13). Parsers must be compatible with runtime ABI.
OS Info:
{
machine = "x86_64",
release = "10.0.22621",
sysname = "Windows_NT",
version = "Windows 11 Pro"
} ~
Parser/Features H L F I J
- bash ✓ ✓ ✓ . ✓
- bicep ✓ ✓ ✓ ✓ ✓
- gitignore ✓ . . . .
- go ✓ ✓ ✓ ✓ ✓
- gomod ✓ . . . ✓
- gosum ✓ . . . .
- gowork ✓ . . . ✓
- html ✓ ✓ ✓ ✓ ✓
- http ✓ . . . ✓
- json ✓ ✓ ✓ ✓ .
- lua ✓ ✓ ✓ ✓ ✓
- luadoc ✓ . . . .
- luap ✓ . . . .
- markdown ✓ . ✓ ✓ ✓
- markdown_inline ✓ . . . ✓
- python ✓ ✓ ✓ ✓ ✓
- regex ✓ . . . .
- toml ✓ ✓ ✓ ✓ ✓
Legend: H[ighlight], L[ocals], F[olds], I[ndents], In[j]ections
+) multiple parsers found, only one will be used
x) errors found in the query, try to run :TSUpdate {lang} ~
Misfit-s commented
fixed it by running choco install mingw -y
into PowerShell.
scottmckendry commented
Nice