neovim / neovim.github.io

Neovim website
https://neovim.io
MIT License
425 stars 101 forks source link

roadmap: add bash to the list of new treesitter parsers #342

Closed jpoliv closed 9 months ago

jpoliv commented 9 months ago

neovim 0.10.0-dev builds include the following new parsers:

Tree-sitter parsers in the 0.9 branch:

versus tree-sitter parsers in the 0.10-dev branch:

This can also be checked by downloading the binary linux tarballs and check the list of dynamic link libraries under the parser/ subdirectory. For example:

neovim 0.10.0-dev nightly:

$ curl -L https://github.com/neovim/neovim/releases/download/nightly/nvim-linux64.tar.gz
$ tar tf nvim-linux64.tar.gz  | grep parser | sort
nvim-linux64/lib/nvim/parser/
nvim-linux64/lib/nvim/parser/bash.so
nvim-linux64/lib/nvim/parser/c.so
nvim-linux64/lib/nvim/parser/lua.so
nvim-linux64/lib/nvim/parser/markdown_inline.so
nvim-linux64/lib/nvim/parser/markdown.so
nvim-linux64/lib/nvim/parser/python.so
nvim-linux64/lib/nvim/parser/query.so
nvim-linux64/lib/nvim/parser/vimdoc.so
nvim-linux64/lib/nvim/parser/vim.so
clason commented 9 months ago

It is a very well researched PR, though ;)

(In general, we don't track milestones that closely on the webpage in favor of :h news.)