summaryrefslogtreecommitdiffstatshomepage
path: root/runtime/queries/lua
AgeCommit message (Collapse)AuthorFiles
2026-02-26build(deps): bump tree-sitter-lua to v0.5.0Christian Clason1
2025-12-31build(deps): bump tree-sitter-lua to v0.4.1Christian Clason1
2025-03-15fix(treesitter): update lua, markdown queriesChristian Clason1
2024-11-22fix(treesitter): update queriesChristian Clason1
2024-07-24fix(runtime): sync bundled treesitter queriesChristian Clason1
2024-04-05fix(treesitter): update parsers and queriesChristian Clason2
2024-03-19feat(treesitter): update Lua parser and queries to v0.1.0Christian Clason2
2024-01-21feat(treesitter)!: new standard capture namesChristian Clason3
Problem: Sharing queries with upstream and Helix is difficult due to different capture names. Solution: Define and document a new set of standard captures that matches tree-sitter "standard captures" (where defined) and is closer to Helix' Atom-style nested groups. This is a breaking change for colorschemes that defined highlights based on the old captures. On the other hand, the default colorscheme now defines links for all standard captures (not just those used in bundled queries), improving the out-of-the-box experience.
2023-06-26fix(treesitter): update lua parser and queries (#24148)Christian Clason2
2023-05-15build(deps): update lua parser and queriesChristian Clason2
2023-04-01fix(treesitter): update queries from nvim-treesitterChristian Clason2
remove self-injection for C preprocessor macros (can be very slow)
2023-03-08feat(treesitter): use upstream format for injection queriesLewis Russell1
2023-03-03feat(treesitter): bundle query parser and queries (#22483)Christian Clason1
skip injections for now
2023-02-23feat(treesitter): upstream foldexpr from nvim-treesitterLewis Russell1
2022-11-01build(deps): bump lua parser to v0.0.14 (#20897)Christian Clason1
2022-09-06feat(extmarks,ts,spell): full support for spellingThomas Vigouroux1
- Added 'spell' option to extmarks: Extmarks with this set will have the region spellchecked. - Added 'noplainbuffer' option to 'spelloptions': This is used to tell Neovim not to spellcheck the buffer. The old behaviour was to spell check the whole buffer unless :syntax was set. - Added spelling support to the treesitter highlighter: @spell captures in highlights.scm are used to define regions which should be spell checked. - Added support for navigating spell errors for extmarks: Works for both ephemeral and static extmarks - Added '_on_spell_nav' callback for decoration providers: Since ephemeral callbacks are only drawn for the visible screen, providers must implement this callback to instruct Neovim which regions in the buffer need can be spell checked. The callback takes a start position and an end position. Note: this callback is subject to change hence the _ prefix. - Added spell captures for built-in support languages Co-authored-by: Lewis Russell <lewis6991@gmail.com> Co-authored-by: Björn Linse <bjorn.linse@gmail.com>
2022-09-06feat(treesitter): add injectionsChristian Clason1
2022-09-06feat(treesitter): bundle Lua parser and queriesThomas Vigouroux1
parser from https://github.com/MunifTanjim/tree-sitter-lua queries from nvim-treesitter