├── .editorconfig ├── .gdbinit ├── .gitattributes ├── .github └── workflows │ ├── fuzz.yml │ ├── main.yml │ └── release.yml ├── .gitignore ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE ├── Makefile ├── Package.swift ├── README.md ├── binding.gyp ├── bindings ├── c │ ├── tree-sitter-vim.h │ └── tree-sitter-vim.pc.in ├── go │ ├── binding.go │ ├── binding_test.go │ └── go.mod ├── node │ ├── binding.cc │ ├── index.d.ts │ └── index.js ├── python │ └── tree_sitter_vim │ │ ├── __init__.py │ │ ├── __init__.pyi │ │ ├── binding.c │ │ └── py.typed ├── rust │ ├── build.rs │ └── lib.rs └── swift │ └── TreeSitterVim │ └── vim.h ├── grammar.js ├── keywords.js ├── package.json ├── pyproject.toml ├── queries └── vim │ ├── folds.scm │ ├── highlights.scm │ └── injections.scm ├── rules ├── autocmd.js ├── command.js ├── edit.js ├── highlight.js ├── syntax.js └── utils.js ├── setup.py ├── src ├── grammar.json ├── keywords.h ├── node-types.json ├── parser.c ├── scanner.c └── tree_sitter │ ├── alloc.h │ ├── array.h │ └── parser.h ├── test ├── corpus │ ├── augroup_statement.txt │ ├── autocmds.txt │ ├── bang_filter_statement.txt │ ├── colorscheme_statement.txt │ ├── command_statement.txt │ ├── commands.txt │ ├── comments.txt │ ├── const_statement.txt │ ├── echo.txt │ ├── edit_statement.txt │ ├── embedded_langs.txt │ ├── expressions.txt │ ├── filetype_statement.txt │ ├── for_loop.txt │ ├── function_defs.txt │ ├── highlight_statement.txt │ ├── if_statement.txt │ ├── let_statement.txt │ ├── map.txt │ ├── normal_statement.txt │ ├── options_statements.txt │ ├── quickfix.txt │ ├── range_statement.txt │ ├── register_statement.txt │ ├── runtime_statement.txt │ ├── scan_separator.txt │ ├── scriptencoding_statement.txt │ ├── set.txt │ ├── sign_statement.txt │ ├── silent.txt │ ├── source_statement.txt │ ├── syntax_statement.txt │ ├── tags │ ├── try_statement.txt │ ├── unlet_statement.txt │ ├── while_loop.txt │ └── window_commands.txt └── highlight │ ├── command_modifiers.vim │ ├── commands.vim │ ├── comment.vim │ ├── edit.vim │ ├── eval.vim │ ├── filetype_statement.vim │ ├── highlight_statement.vim │ ├── let_statement.vim │ ├── loops.vim │ ├── set.vim │ ├── source.vim │ └── statements.vim └── tree-sitter.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/.gdbinit -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/fuzz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/.github/workflows/fuzz.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/Makefile -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/binding.gyp -------------------------------------------------------------------------------- /bindings/c/tree-sitter-vim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/bindings/c/tree-sitter-vim.h -------------------------------------------------------------------------------- /bindings/c/tree-sitter-vim.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/bindings/c/tree-sitter-vim.pc.in -------------------------------------------------------------------------------- /bindings/go/binding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/bindings/go/binding.go -------------------------------------------------------------------------------- /bindings/go/binding_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/bindings/go/binding_test.go -------------------------------------------------------------------------------- /bindings/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/bindings/go/go.mod -------------------------------------------------------------------------------- /bindings/node/binding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/bindings/node/binding.cc -------------------------------------------------------------------------------- /bindings/node/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/bindings/node/index.d.ts -------------------------------------------------------------------------------- /bindings/node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/bindings/node/index.js -------------------------------------------------------------------------------- /bindings/python/tree_sitter_vim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/bindings/python/tree_sitter_vim/__init__.py -------------------------------------------------------------------------------- /bindings/python/tree_sitter_vim/__init__.pyi: -------------------------------------------------------------------------------- 1 | def language() -> int: ... 2 | -------------------------------------------------------------------------------- /bindings/python/tree_sitter_vim/binding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/bindings/python/tree_sitter_vim/binding.c -------------------------------------------------------------------------------- /bindings/python/tree_sitter_vim/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bindings/rust/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/bindings/rust/build.rs -------------------------------------------------------------------------------- /bindings/rust/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/bindings/rust/lib.rs -------------------------------------------------------------------------------- /bindings/swift/TreeSitterVim/vim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/bindings/swift/TreeSitterVim/vim.h -------------------------------------------------------------------------------- /grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/grammar.js -------------------------------------------------------------------------------- /keywords.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/keywords.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/pyproject.toml -------------------------------------------------------------------------------- /queries/vim/folds.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/queries/vim/folds.scm -------------------------------------------------------------------------------- /queries/vim/highlights.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/queries/vim/highlights.scm -------------------------------------------------------------------------------- /queries/vim/injections.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/queries/vim/injections.scm -------------------------------------------------------------------------------- /rules/autocmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/rules/autocmd.js -------------------------------------------------------------------------------- /rules/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/rules/command.js -------------------------------------------------------------------------------- /rules/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/rules/edit.js -------------------------------------------------------------------------------- /rules/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/rules/highlight.js -------------------------------------------------------------------------------- /rules/syntax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/rules/syntax.js -------------------------------------------------------------------------------- /rules/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/rules/utils.js -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/setup.py -------------------------------------------------------------------------------- /src/grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/src/grammar.json -------------------------------------------------------------------------------- /src/keywords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/src/keywords.h -------------------------------------------------------------------------------- /src/node-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/src/node-types.json -------------------------------------------------------------------------------- /src/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/src/parser.c -------------------------------------------------------------------------------- /src/scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/src/scanner.c -------------------------------------------------------------------------------- /src/tree_sitter/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/src/tree_sitter/alloc.h -------------------------------------------------------------------------------- /src/tree_sitter/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/src/tree_sitter/array.h -------------------------------------------------------------------------------- /src/tree_sitter/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/src/tree_sitter/parser.h -------------------------------------------------------------------------------- /test/corpus/augroup_statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/augroup_statement.txt -------------------------------------------------------------------------------- /test/corpus/autocmds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/autocmds.txt -------------------------------------------------------------------------------- /test/corpus/bang_filter_statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/bang_filter_statement.txt -------------------------------------------------------------------------------- /test/corpus/colorscheme_statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/colorscheme_statement.txt -------------------------------------------------------------------------------- /test/corpus/command_statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/command_statement.txt -------------------------------------------------------------------------------- /test/corpus/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/commands.txt -------------------------------------------------------------------------------- /test/corpus/comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/comments.txt -------------------------------------------------------------------------------- /test/corpus/const_statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/const_statement.txt -------------------------------------------------------------------------------- /test/corpus/echo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/echo.txt -------------------------------------------------------------------------------- /test/corpus/edit_statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/edit_statement.txt -------------------------------------------------------------------------------- /test/corpus/embedded_langs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/embedded_langs.txt -------------------------------------------------------------------------------- /test/corpus/expressions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/expressions.txt -------------------------------------------------------------------------------- /test/corpus/filetype_statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/filetype_statement.txt -------------------------------------------------------------------------------- /test/corpus/for_loop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/for_loop.txt -------------------------------------------------------------------------------- /test/corpus/function_defs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/function_defs.txt -------------------------------------------------------------------------------- /test/corpus/highlight_statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/highlight_statement.txt -------------------------------------------------------------------------------- /test/corpus/if_statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/if_statement.txt -------------------------------------------------------------------------------- /test/corpus/let_statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/let_statement.txt -------------------------------------------------------------------------------- /test/corpus/map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/map.txt -------------------------------------------------------------------------------- /test/corpus/normal_statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/normal_statement.txt -------------------------------------------------------------------------------- /test/corpus/options_statements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/options_statements.txt -------------------------------------------------------------------------------- /test/corpus/quickfix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/quickfix.txt -------------------------------------------------------------------------------- /test/corpus/range_statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/range_statement.txt -------------------------------------------------------------------------------- /test/corpus/register_statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/register_statement.txt -------------------------------------------------------------------------------- /test/corpus/runtime_statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/runtime_statement.txt -------------------------------------------------------------------------------- /test/corpus/scan_separator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/scan_separator.txt -------------------------------------------------------------------------------- /test/corpus/scriptencoding_statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/scriptencoding_statement.txt -------------------------------------------------------------------------------- /test/corpus/set.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/set.txt -------------------------------------------------------------------------------- /test/corpus/sign_statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/sign_statement.txt -------------------------------------------------------------------------------- /test/corpus/silent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/silent.txt -------------------------------------------------------------------------------- /test/corpus/source_statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/source_statement.txt -------------------------------------------------------------------------------- /test/corpus/syntax_statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/syntax_statement.txt -------------------------------------------------------------------------------- /test/corpus/tags: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/corpus/try_statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/try_statement.txt -------------------------------------------------------------------------------- /test/corpus/unlet_statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/unlet_statement.txt -------------------------------------------------------------------------------- /test/corpus/while_loop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/while_loop.txt -------------------------------------------------------------------------------- /test/corpus/window_commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/corpus/window_commands.txt -------------------------------------------------------------------------------- /test/highlight/command_modifiers.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/highlight/command_modifiers.vim -------------------------------------------------------------------------------- /test/highlight/commands.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/highlight/commands.vim -------------------------------------------------------------------------------- /test/highlight/comment.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/highlight/comment.vim -------------------------------------------------------------------------------- /test/highlight/edit.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/highlight/edit.vim -------------------------------------------------------------------------------- /test/highlight/eval.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/highlight/eval.vim -------------------------------------------------------------------------------- /test/highlight/filetype_statement.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/highlight/filetype_statement.vim -------------------------------------------------------------------------------- /test/highlight/highlight_statement.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/highlight/highlight_statement.vim -------------------------------------------------------------------------------- /test/highlight/let_statement.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/highlight/let_statement.vim -------------------------------------------------------------------------------- /test/highlight/loops.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/highlight/loops.vim -------------------------------------------------------------------------------- /test/highlight/set.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/highlight/set.vim -------------------------------------------------------------------------------- /test/highlight/source.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/highlight/source.vim -------------------------------------------------------------------------------- /test/highlight/statements.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/test/highlight/statements.vim -------------------------------------------------------------------------------- /tree-sitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-vim/HEAD/tree-sitter.json --------------------------------------------------------------------------------