feat(tree-sitter): remove external tree-sitter deps#620
Draft
gorillamoe wants to merge 1 commit into
Draft
Conversation
1efdc1f to
8289f1f
Compare
Remove all external tree-sitter dependencies and instead use the
built-in tree-sitter support in Neovim. This simplifies the setup
process and reduces maintenance overhead.
- Removed the `nvim-treesitter` dependency and related configuration.
- Updated documentation to reflect the changes in tree-sitter usage.
- Refactored code to utilize Neovim's built-in tree-sitter API.
- Added a new `lua/treesitter.lua` module to handle tree-sitter related
functionality.
- Updated tests to work with the new tree-sitter implementation.
- All tests pass locally (but had to fix local test setup; not included
in this PR).
- Many things are broken like (`:Gomvp`), but this is also broken in master
- Also removed nvim-treesitter-textobjects dep and updated docs
- `luacheck` reports a lot of warnings/errors, but they are also present
in master, so I didn't fix them in this PR.
8289f1f to
cff9263
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Remove all external tree-sitter dependencies and instead use the built-in tree-sitter support in Neovim. This simplifies the setup process and reduces maintenance overhead.
nvim-treesitterdependency and related configuration.lua/treesitter.luamodule to handle tree-sitter related functionality.:Gomvp), but this is also broken in masterluacheckreports a lot of warnings/errors, but they are also present in master, so I didn't fix them in this PR.X-Ref: #613