| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | feat!: drop modules, general refactor and cleanup | Christian Clason | 2025-05-12 | 5 | -743/+0 |
| | | |||||
| * | feat(typescript): highlight awaited functions with type parameters | Omar Valdez | 2025-02-10 | 1 | -0/+12 |
| | | |||||
| * | feat(javascript): update parser and queries | Amaan Qureshi | 2024-09-02 | 1 | -52/+23 |
| | | |||||
| * | feat(glimmer): add glimmer-javascript and glimmer-typescript (#7064) | NullVoxPopuli | 2024-08-31 | 2 | -7/+0 |
| | | |||||
| * | feat(ecma): inject sql template methods | DimensionalDot | 2024-08-02 | 1 | -0/+19 |
| | | |||||
| * | feat(highlights): capture wildcard imports as `@character.special` | Omar Valdez | 2024-08-01 | 1 | -5/+13 |
| | | |||||
| * | fix(ecma): indent single-line if statements (#6846) | Riley Bruins | 2024-07-04 | 1 | -4/+9 |
| | | | | Fixes #5898. | ||||
| * | feat(predicates)!: rename `has-type` to `kind-eq` to align with Helix | Christian Clason | 2024-06-02 | 1 | -3/+3 |
| | | | | | No point in having a different name for the same predicate. | ||||
| * | 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. | ||||
| * | fix(ecma): template string injections (#6590) | Ananda Umamil | 2024-05-07 | 1 | -9/+9 |
| | | |||||
| * | feat(ecma) fold `array` (#6564) | Jakub Donovan | 2024-05-03 | 1 | -0/+1 |
| | | |||||
| * | feat(ecma): inject async template functions | DimensionalDot | 2024-05-02 | 1 | -10/+34 |
| | | |||||
| * | feat: import statement folds for common languages | Riley Bruins | 2024-05-01 | 1 | -1/+1 |
| | | |||||
| * | 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 | 2 | -155/+115 |
| | | |||||
| * | * feat(ecma): styled injection for `css` and `keyframes` | Mark Skelton | 2024-03-13 | 1 | -2/+15 |
| | | |||||
| * | feat(format-scripts): linewrap predicates | 再生花 | 2024-02-23 | 1 | -2/+9 |
| | | | | "format-ignore".kick() | ||||
| * | feat(ecma): folding for function arguments | Riley Bruins | 2024-02-20 | 1 | -0/+1 |
| | | |||||
| * | 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 | 4 | -8/+24 |
| | | |||||
| * | feat(angular)!: switch to parser supporting v17 (#5779) | Dennis van den Berg | 2024-01-27 | 1 | -0/+62 |
| | | |||||
| * | chore: format queries | Phạm Huy Hoàng | 2024-01-21 | 3 | -6/+5 |
| | | |||||
| * | fix(highlights): improve member/property distinction | ObserverOfTime | 2024-01-19 | 1 | -3/+3 |
| | | |||||
| * | chore: query formatting | Pham Huy Hoang | 2024-01-19 | 4 | -186/+243 |
| | | |||||
| * | 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` | ||||
| * | feat(locals)!: switch to upstream captures | Christian Clason | 2024-01-19 | 1 | -15/+15 |
| | | |||||
| * | feat: add tree-sitter-styled (#5735) | Mark Skelton | 2023-12-19 | 1 | -4/+4 |
| | | | | | | | | | | | | | | * Add styled parser * Add queries * Update highlights * Remove unnecessary highlights * Update injections to use the styled grammar * Remove requires npm | ||||
| * | fix(ecma): prioritize builtins | Amaan Qureshi | 2023-11-10 | 1 | -16/+19 |
| | | |||||
| * | fix(ecma_injections): limit function names to alphanumeric characters only | Tobias S | 2023-08-31 | 1 | -0/+1 |
| | | |||||
| * | fix(ecma): fix no injections for innerHTML (#5258) | Pham Huy Hoang | 2023-08-16 | 1 | -5/+10 |
| | | |||||
| * | chore(injections)!: update injection syntax to 0.9 | Pham Huy Hoang | 2023-08-12 | 1 | -40/+52 |
| | | | | | | | | | | Since 0.9, @lang syntax is still available as fallback but will soon be deprecated. Because of that, new syntax should be adopted once 0.9 becomes the baseline requirements for nvim-treesitter - update health check - update doc | ||||
| * | 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 |
| | | |||||
| * | perf: remove match where possible | Amaan Qureshi | 2023-04-21 | 1 | -2/+2 |
| | | |||||
| * | fix(ecma): comment should be `@indent.auto` (#4669) | Amaan Qureshi | 2023-04-18 | 1 | -4/+4 |
| | | |||||
| * | perf(ecma): remove GraphQL comment injection, use lua-match for gql template ↵ | Amaan Qureshi | 2023-04-15 | 1 | -5/+6 |
| | | | | | detection | ||||
| * | javascript: highlight more builtins | ObserverOfTime | 2023-04-12 | 1 | -2/+63 |
| | | | | | Co-Authored-By: Sergey Berezhnoy <veged@ya.ru> | ||||
| * | feat(ecma): use lua-match for jsdoc injections | Amaan Qureshi | 2023-04-03 | 1 | -1/+1 |
| | | |||||
| * | use indent.X syntax for captures and properties of set directives | George Harker | 2023-03-24 | 1 | -16/+16 |
| | | | | | | | | | update CONTRIBUTING.md adjust indents for bass fix doc capture comment | ||||
| * | fix: svg injection in ecma tagged literals | Benny Powers | 2023-03-19 | 1 | -5/+5 |
| | | |||||
| * | style: alternation in template literal query | Benny Powers | 2023-03-19 | 1 | -17/+18 |
| | | |||||
| * | fix(ecma): template literal injections | Benny Powers | 2023-03-19 | 1 | -0/+13 |
| | | | | | | see https://github.com/nvim-treesitter/nvim-treesitter/commit/e3ebc8ec5d586162f3c408417621daa59ba8ea62#commitcomment-104824257 for explanation This also assigns the HTML parser for SVG tagged literals, since svg uses the HTML parser | ||||
