aboutsummaryrefslogtreecommitdiff
path: root/runtime/queries/markdown_inline
Commit message (Collapse)AuthorAge
* feat(treesitter)!: new standard capture namesChristian Clason2024-01-21
| | | | | | | | | | | | | | 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.
* feat(lsp): use treesitter for stylize markdownMaria José Solano2023-09-19
|
* fix(treesitter): update markdown parser and queries (#24429)Christian Clason2023-07-22
|
* feat(treesitter): bundle markdown parser and queries (#22481)Christian Clason2023-07-01
* bundle split Markdown parser from https://github.com/MDeiml/tree-sitter-markdown * add queries from https://github.com/nvim-treesitter/nvim-treesitter/tree/main * upstream `#trim!` and `#inject-language!` directives Co-authored-by: dundargoc <gocdundar@gmail.com>