| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | feat!: drop modules, general refactor and cleanup | Christian Clason | 2025-05-12 | 1 | -123/+0 |
| | | |||||
| * | feat(markdown): completely conceal codeblock fences on nightly | Christian Clason | 2025-02-25 | 1 | -2/+4 |
| | | | | | | Required to make https://github.com/neovim/neovim/pull/31324 work with nvim-treesitter. | ||||
| * | refactor(queries): Remove quotes from properties in set! directive | Omar Valdez | 2024-07-28 | 1 | -3/+3 |
| | | |||||
| * | fix(markdown): capture entire heading line | Riley Bruins | 2024-06-14 | 1 | -12/+6 |
| | | |||||
| * | feat(markdown): yaml, toml metadata highlights (#6360) | Riley Bruins | 2024-03-26 | 1 | -0/+6 |
| | | |||||
| * | feat(markdown): highlight link label delimiter | Riley Bruins | 2024-03-07 | 1 | -0/+4 |
| | | |||||
| * | feat(highlights)!: enforce documented captures (#6232) | Christian Clason | 2024-03-03 | 1 | -10/+10 |
| | | | | | | | | | | | | | | | | Problem: Allowing undocumented "secret" (sub)captures makes it harder to write comprehensive colorschemes and catch inconsistent captures. Solution: Only allow captures listed in CONTRIBUTING.md. Add useful (cross-language) subcaptures and drop language-specific or too niche ones. Follow-up: Adding further `*.builtin` captures and changing queries to use them. Language-specific subcaptures should instead be added in user config or a custom language plugin. | ||||
| * | fix: typos | dundargoc | 2024-02-19 | 1 | -1/+1 |
| | | |||||
| * | fix(highlights): use `markup.raw.delimiter` for fences | Christian Clason | 2024-01-20 | 1 | -1/+1 |
| | | |||||
| * | fix(markdown): remove @none from code fences | Riley Bruins | 2024-01-20 | 1 | -2/+0 |
| | | |||||
| * | chore: query formatting | Pham Huy Hoang | 2024-01-19 | 1 | -21/+47 |
| | | |||||
| * | feat!: align standard captures with upstream | Christian Clason | 2024-01-19 | 1 | -39/+39 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Sharing highlight queries with upstream tree-sitter and Helix is difficult. Solution: Where reasonable, use capture names in tree-sitter's standard list or Helix's Atom-style hierarchy. Specifically: * tree-sitter "standard capture names" (https://github.com/tree-sitter/tree-sitter/blob/3f44b896852eb7daaa6df4fb778c9bb52c70c815/highlight/src/lib.rs#L20-L72): - `@parameter` -> `@variable.parameter` - `@field` -> `@variable.member` - `@namespace` -> `@module` - `@float` -> `@number.float` - `@symbol` -> `@string.special.symbol` - `@string.regex` -> `@string.regexp` - `@text.*` -> `@markup.*` (`strong`, `italic`, `link`, `strikethrough`; with exceptions; see below) - `@text.title` -> `@markup.heading` - `@text.literal` -> `@markup.raw` - `@text.reference` -> `@markup.link` - `@text.uri` -> `@markup.link.url` (in markup links) - `@string.special` -> `@markup.link.label` (non-url links) - `@punctuation.special` -> `@markup.list` (markdown lists only; move subitems from `@text.todo`) * Helix captures (https://docs.helix-editor.com/master/themes.html#syntax-highlighting): - `@method` -> `@function.method` - `@method.call` -> `@function.method.call` - `@text.{todo,warning,note,danger}` -> `@comment.{error,warning,hint,info,todo}` - `@text.diff.{add,delete,}` -> `@diff.{plus,minus,delta}` - `@text.uri` -> `@string.special.url` (outside markup) - `@preproc` -> `@keyword.directive` - `@define` -> `@keyword.directive`(`.define`?) - `@storageclass` -> `@keyword.storage` - `@conditional` -> `@keyword.conditional` - `@debug` -> `@keyword.debug` - `@exception` -> `@keyword.exception` - `@include` -> `@keyword.import` - `@repeat` -> `@keyword.repeat` * cleanup - remove some redundant `@conceal` (but still allow it for conceal-only patterns) - remove obsolete `@error` (syntax linting is out of scope for this repo) - sort, cleanup capture list in `CONTRIBUTING.md` | ||||
| * | fix(markdown): revert bullet conceals due to spacing issues (#5742) | Riley Bruins | 2023-11-30 | 1 | -17/+21 |
| | | |||||
| * | feat(markdown): conceals for bullets, block quotes | Riley Bruins | 2023-11-19 | 1 | -0/+18 |
| | | | | | | | | * feat(markdown): conceals for bullets, block quotes * fix: remove conceals for block quotes, change list minus to em dash * fix(markdown): allow empty bullets to be concealed | ||||
| * | fix(markdown): set block quote priority within allowed range | Riley Bruins | 2023-10-15 | 1 | -1/+1 |
| | | |||||
| * | fix(markdown): give code blocks higher priority than block quotes | Riley Bruins | 2023-10-15 | 1 | -1/+1 |
| | | |||||
| * | feat(markdown): conceal triple backticks and HTML entities | Maria José Solano | 2023-09-17 | 1 | -0/+8 |
| | | |||||
| * | fix(highlights): lower priority for codeblocks with injections (#4905) | Christian Clason | 2023-06-05 | 1 | -5/+3 |
| | | |||||
| * | highlights(markup): distinguish heading level in queries | Christian Clason | 2023-05-13 | 1 | -19/+11 |
| | | | | | | also add a few queries from Helix and remove controversial code block conceal in Markdown | ||||
| * | markdown: add strikethrough and blockquote captures | Christian Clason | 2023-01-14 | 1 | -0/+2 |
| | | |||||
| * | feat: added highlights for markdown checkboxes | Folke Lemaitre | 2022-12-02 | 1 | -0/+4 |
| | | |||||
| * | feat: conceal backslash escape | Folke Lemaitre | 2022-10-30 | 1 | -5/+4 |
| | | |||||
| * | feat: markdown table highlights and inline | Folke Lemaitre | 2022-10-29 | 1 | -0/+8 |
| | | |||||
| * | feat(spell): upstream spell queries from spellsitter | Lewis Russell | 2022-09-06 | 1 | -0/+2 |
| | | |||||
| * | feat(markdown)!: switch to split parser (#3048) | Matthias Deiml | 2022-06-26 | 1 | -56/+7 |
| | | | | | | | | | * switch to split markdown parser with separate block and inline parsers to improve performance * add exclude_children! directive (useful for something like Injected markdown incorrectly highlights indented docstrings #2212) * split markdown queries into block and inline ones and add the injection for inline into block grammar * add include_dir option to parser configs (needed because the two grammars don't live in the repos root directory) BREAKING CHANGE: downstream queries need to be adapted to new parser | ||||
| * | Simplify inline conceal | Jonathan Lopez | 2022-06-22 | 1 | -12/+3 |
| | | |||||
| * | Refactor markdown conceal code | Jonathan Lopez | 2022-06-22 | 1 | -21/+25 |
| | | |||||
| * | Conceal markdown links | Jonathan Lopez | 2022-06-22 | 1 | -0/+22 |
| | | |||||
| * | highlights(markdown): fix conceal capture | Stephan Seitz | 2022-04-15 | 1 | -1/+1 |
| | | |||||
| * | highlights(markdown): conceal link markers | Stephan Seitz | 2022-04-15 | 1 | -0/+8 |
| | | |||||
| * | highlights(markdown): conceal `emphasis_delimiter` | Stephan Seitz | 2022-04-15 | 1 | -5/+6 |
| | | |||||
| * | highlights(markdown): add conceal to fenced code blocks | Stephan Seitz | 2022-04-15 | 1 | -0/+7 |
| | | |||||
| * | Highlight markdown `uri_autolink` as `@text.uri` | Gustaf Lindstedt | 2022-03-14 | 1 | -1/+4 |
| | | |||||
| * | Add highlight for markdown delimiters | MDeiml | 2022-01-11 | 1 | -2/+6 |
| | | |||||
| * | Fix slow startup times for markdown grammar | MDeiml | 2022-01-10 | 1 | -2/+2 |
| | | |||||
| * | Add highlight for quote marker | MDeiml | 2022-01-08 | 1 | -0/+2 |
| | | |||||
| * | highlights(markdown): `image_description` as reference | numToStr | 2022-01-07 | 1 | -4/+5 |
| | | |||||
| * | highlights(markdown): image `!` as delimeter | numToStr | 2022-01-07 | 1 | -0/+3 |
| | | |||||
| * | highlights(markdown): `link_title` as string literal | numToStr | 2022-01-07 | 1 | -1/+4 |
| | | |||||
| * | highlights(markdown): image `(` `)` `[` `]` as delemiter | numToStr | 2022-01-07 | 1 | -1/+5 |
| | | |||||
| * | improve markdown highlighting | Alvaro Muñoz Sanchez | 2022-01-06 | 1 | -5/+13 |
| | | |||||
| * | Markdown: update queries | Santos Gallegos | 2021-12-21 | 1 | -0/+1 |
| | | |||||
| * | highlights(markdown): separate highlight for header marker and underline (#2129) | Michael Chris Lopez | 2021-12-19 | 1 | -3/+12 |
| | | |||||
| * | highlights(markdown): highlight link_text as @text.reference | Michael Chris Lopez | 2021-12-17 | 1 | -0/+1 |
| | | |||||
| * | parsers: Add MDeiml/tree-sitter-markdown as markdown parser | Stephan Seitz | 2021-12-14 | 1 | -13/+27 |
| | | | | | Fixes #872 | ||||
| * | Add inline html comments | jghauser | 2021-02-25 | 1 | -0/+2 |
| | | |||||
| * | feat(languagetree): implement language tree | Thomas Vigouroux | 2020-10-19 | 1 | -0/+19 |
| Allow the LanguageTree to be used as an option for highlighting. Co-authored-by: Santos Gallegos <stsewd@protonmail.com> Co-authored-by: Yazdani Kiyan <yazdani.kiyan@protonmail.com> | |||||
