| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | feat!: drop modules, general refactor and cleanup | Christian Clason | 2025-05-12 | 1 | -392/+0 |
| | | |||||
| * | feat(typescript): highlight awaited functions with type parameters | Omar Valdez | 2025-02-10 | 1 | -0/+12 |
| | | |||||
| * | feat(glimmer): add glimmer-javascript and glimmer-typescript (#7064) | NullVoxPopuli | 2024-08-31 | 1 | -4/+0 |
| | | |||||
| * | feat(highlights): capture wildcard imports as `@character.special` | Omar Valdez | 2024-08-01 | 1 | -5/+13 |
| | | |||||
| * | feat: standardize and document export keywords | Riley Bruins | 2024-05-13 | 1 | -13/+2 |
| | | | | | | | Many export keywords are captured as `@keyword.import`. This commit makes it so they are all captured like that, and mentions it in the documentation. | ||||
| * | feat: more `@keyword.type` captures | Riley Bruins | 2024-05-01 | 1 | -1/+2 |
| | | |||||
| * | feat(glimmer): highlight builtin tags | NullVoxPopuli | 2024-04-26 | 1 | -0/+4 |
| | | |||||
| * | refactor(format): drop extra indentation for field | Phạm Huy Hoàng | 2024-03-21 | 1 | -18/+13 |
| | | |||||
| * | feat(format-scripts): linewrap predicates | 再生花 | 2024-02-23 | 1 | -2/+9 |
| | | | | "format-ignore".kick() | ||||
| * | refactor(ecma): delimiter highlight consolidation | Riley Bruins | 2024-02-17 | 1 | -17/+6 |
| | | |||||
| * | feat(ecma): highlight label identifiers | Riley Bruins | 2024-02-16 | 1 | -0/+2 |
| | | |||||
| * | feat(ecma): highlight decorator and destructuring | Ananda Umamil | 2024-02-10 | 1 | -4/+17 |
| | | |||||
| * | chore(ecma,jsx): update parser and queries | Amaan Qureshi | 2024-01-31 | 1 | -6/+9 |
| | | |||||
| * | chore: format queries | Phạm Huy Hoàng | 2024-01-21 | 1 | -2/+2 |
| | | |||||
| * | fix(highlights): improve member/property distinction | ObserverOfTime | 2024-01-19 | 1 | -3/+3 |
| | | |||||
| * | chore: query formatting | Pham Huy Hoang | 2024-01-19 | 1 | -97/+110 |
| | | |||||
| * | feat!: align standard captures with upstream | Christian Clason | 2024-01-19 | 1 | -23/+23 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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(ecma): prioritize builtins | Amaan Qureshi | 2023-11-10 | 1 | -16/+19 |
| | | |||||
| * | queries/*/highlights.scm : remove `@spell` for strings | ShellCode33 | 2023-08-07 | 1 | -1/+1 |
| | | |||||
| * | feat(typescript): highlight decorators, default case, global declaration | Ananda Umamil | 2023-07-17 | 1 | -0/+6 |
| | | |||||
| * | feat(ecma): highlight regex flags | Sergio A. Vargas | 2023-07-10 | 1 | -0/+1 |
| | | |||||
| * | feat(pug): improve syntax highlighting | ObserverOfTime | 2023-07-07 | 1 | -0/+3 |
| | | |||||
| * | refactor(ecma): triple dot should be an operator | Amaan Qureshi | 2023-06-09 | 1 | -2/+1 |
| | | |||||
| * | feat(ecma): convert eligible `@keyword.operators` | Ananda Umamil | 2023-06-04 | 1 | -4/+4 |
| | | |||||
| * | highlights(typescript): `:` in `switch` statement | Ananda Umamil | 2023-05-18 | 1 | -0/+1 |
| | | |||||
| * | javascript: highlight more builtins | ObserverOfTime | 2023-04-12 | 1 | -2/+63 |
| | | | | | Co-Authored-By: Sergey Berezhnoy <veged@ya.ru> | ||||
| * | Partially Revert "fix(ecma): properly capture constants in const declarations" | Amaan Qureshi | 2023-03-10 | 1 | -5/+0 |
| | | | | | This partially reverts commit c553e6c5608ba54e210e9131bf9ba5e36ef18e57. | ||||
| * | feat: add `@comment.documentation` where applicable | Amaan Qureshi | 2023-03-05 | 1 | -3/+4 |
| | | |||||
| * | fix(ecma): properly capture constants in const declarations | Amaan Qureshi | 2023-03-04 | 1 | -2/+7 |
| | | |||||
| * | feat!: add `@keyword.coroutine` capture | Amaan Qureshi | 2023-03-03 | 1 | -38/+41 |
| | | |||||
| * | highlights(ecma): limit constructor highlight | ObserverOfTime | 2023-02-03 | 1 | -2/+8 |
| | | |||||
| * | highlights: create subscoping for ternary operator | Stephan Seitz | 2022-12-02 | 1 | -1/+1 |
| | | | | | | | | | | | After https://github.com/nvim-treesitter/nvim-treesitter/issues/470, we decided to use `@conditional` for ternary operator instead of operator despite `@conditional` is documented for keywords only. A sub-scoping can make it easier for people to highlight this operator group differently. Also unify the usage of `@conditional...` across languages. | ||||
| * | highlights(ecma): fix captures | ObserverOfTime | 2022-11-26 | 1 | -2/+2 |
| | | | | | Co-Authored-By: Stephan Seitz <stephan.seitz@fau.de> | ||||
| * | Narrow as @include query | Raymond Ha | 2022-11-25 | 1 | -1/+5 |
| | | |||||
| * | highlights(ecma): distinguish between "default" in export and switch statements | Trard | 2022-11-24 | 1 | -1/+5 |
| | | |||||
| * | removed switch from keywords | Trard | 2022-11-21 | 1 | -1/+0 |
| | | |||||
| * | highlights(ecma): add pair_pattern punctuation.delimiter | Munif Tanjim | 2022-10-17 | 1 | -0/+1 |
| | | |||||
| * | highlights: use @preproc where appropriate | ObserverOfTime | 2022-10-15 | 1 | -4/+3 |
| | | |||||
| * | feat(spell): support more languages | Lewis Russell | 2022-09-26 | 1 | -2/+4 |
| | | |||||
| * | highlights(ecma): use `@method.call`/`function.call` | Stephan Seitz | 2022-09-11 | 1 | -2/+2 |
| | | |||||
| * | highlights(ecma): Update queries for literals | Sergio Alejandro Vargas | 2022-08-22 | 1 | -9/+22 |
| | | | | | | | | | | - Add queries for value properties: - undefined - NaN - Infinity - Highlight regex delimiters as brackets instead of punctuation - Format queries for literals | ||||
| * | highlights(javascript): "?." -> optional_chain | GitHub | 2022-08-20 | 1 | -1/+0 |
| | | |||||
| * | highlights(ecma): highlight escape_sequence | Stephan Seitz | 2021-12-12 | 1 | -0/+1 |
| | | |||||
| * | ecma: highlight private properties and methods | numToStr | 2021-11-25 | 1 | -2/+3 |
| | | |||||
| * | Prefer lua-match over match | Lewis Russell | 2021-11-23 | 1 | -3/+3 |
| | | | | | as string.find is much quicker than vim.regex:match* | ||||
| * | fix: remove priority in ecma template substitution hl | kiyan | 2021-10-03 | 1 | -9/+9 |
| | | | | | | | | This PR removes the priority override for the interpolation because it overrides every ecma based template literal, setting none with a higher priority than ecma groups which made every template string look `un`highlighted. | ||||
| * | Ecma: increase priority of template_substitution | Santos Gallegos | 2021-09-17 | 1 | -3/+3 |
| | | | | | Fixes https://github.com/nvim-treesitter/nvim-treesitter/issues/1688 | ||||
| * | Use the color of variable | delphinus | 2021-09-09 | 1 | -1/+1 |
| | | |||||
| * | Set property color for destructuring assignment | delphinus | 2021-09-09 | 1 | -0/+4 |
| | | |||||
| * | Enable to highlight shebang on JS/TS | delphinus | 2021-08-12 | 1 | -1/+4 |
| | | |||||
