| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | feat!: drop modules, general refactor and cleanup | Christian Clason | 2025-05-12 | 5 | -255/+0 |
| | | |||||
| * | feat(typescript): highlight abstract methods | Omar Valdez | 2025-02-27 | 1 | -0/+3 |
| | | |||||
| * | fix(typescript): don't highlight default values as parameters (#7599) | Omar Valdez | 2025-01-30 | 1 | -2/+2 |
| | | |||||
| * | feat: standardize and document export keywords | Riley Bruins | 2024-05-13 | 1 | -4/+0 |
| | | | | | | | 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 | -3/+6 |
| | | |||||
| * | refactor(format): drop extra indentation for field | Phạm Huy Hoàng | 2024-03-21 | 1 | -8/+7 |
| | | |||||
| * | feat(highlights)!: keyword `@type.qualifier` → `@keyword.modifier` | Jaehwang Jung | 2024-03-16 | 1 | -1/+1 |
| | | |||||
| * | feat(format): extra newline after modeline | Phạm Huy Hoàng | 2024-02-29 | 4 | -0/+4 |
| | | |||||
| * | chore(typescript,tsx): update parser and queries | Amaan Qureshi | 2024-01-31 | 1 | -0/+4 |
| | | |||||
| * | chore: format queries | Phạm Huy Hoàng | 2024-01-21 | 1 | -2/+2 |
| | | |||||
| * | chore: query formatting | Pham Huy Hoang | 2024-01-19 | 4 | -51/+101 |
| | | |||||
| * | feat!: align standard captures with upstream | Christian Clason | 2024-01-19 | 1 | -14/+14 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | -7/+7 |
| | | |||||
| * | fix(typescript): do not highlight undefined as variable | Munif Tanjim | 2023-10-15 | 1 | -4/+0 |
| | | |||||
| * | folds(typescript): add `enum_declaration` | Stephan Seitz | 2023-08-27 | 1 | -0/+1 |
| | | | | | Fixes #5325 | ||||
| * | feat(typescript): highlight decorators, default case, global declaration | Ananda Umamil | 2023-07-17 | 1 | -0/+3 |
| | | |||||
| * | feat(javascript): highlight parameter destructuring patterns | Ananda Umamil | 2023-07-01 | 1 | -0/+6 |
| | | |||||
| * | feat(typescript): update highlights | Amaan Qureshi | 2023-06-09 | 1 | -0/+18 |
| | | |||||
| * | feat(ecma): convert eligible `@keyword.operators` | Ananda Umamil | 2023-06-04 | 1 | -3/+6 |
| | | |||||
| * | feat(typescript): highlight `is` and `:` in type predicate | Ananda Umamil | 2023-06-04 | 1 | -0/+4 |
| | | |||||
| * | feat(typescript): add non-null operator | Amaan Qureshi | 2023-05-09 | 1 | -0/+2 |
| | | |||||
| * | fix(typescript): remove duplicate capture | Amaan Qureshi | 2023-05-09 | 1 | -3/+0 |
| | | |||||
| * | use indent.X syntax for captures and properties of set directives | George Harker | 2023-03-24 | 1 | -1/+1 |
| | | | | | | | | | update CONTRIBUTING.md adjust indents for bass fix doc capture comment | ||||
| * | feat(typescript): add various missing function/method captures | Amaan Qureshi | 2023-03-22 | 1 | -0/+18 |
| | | |||||
| * | highlights(typescript): `infer`, template literal type & punctuations | Ananda Umamil | 2023-03-11 | 1 | -0/+13 |
| | | |||||
| * | highlights(typescript): add `module` keyword | Ananda Umamil | 2022-12-13 | 1 | -0/+1 |
| | | |||||
| * | highlights(typescript): use more specific groups | ObserverOfTime | 2022-11-26 | 1 | -18/+24 |
| | | |||||
| * | highlights(typescript): Fix as highlight | Raymond Ha | 2022-11-25 | 1 | -0/+2 |
| | | |||||
| * | highlights(typescript): add satisfies keyword (#3852) | Raymond Ha | 2022-11-24 | 1 | -0/+1 |
| | | |||||
| * | highlights(typescript): add override keyword | ObserverOfTime | 2022-10-15 | 1 | -0/+1 |
| | | |||||
| * | highlights(javascript): "?." -> optional_chain | GitHub | 2022-08-20 | 1 | -1/+3 |
| | | |||||
| * | highlights(typescript): fix indentifier for type imports | Munif Tanjim | 2021-07-01 | 1 | -0/+6 |
| | | |||||
| * | locals(js,ts): Add parameters again (#1231) | Stephan Seitz | 2021-04-28 | 1 | -0/+24 |
| | | |||||
| * | Add JS/TS parameters again (#1227) | Stephan Seitz | 2021-04-23 | 1 | -0/+25 |
| | | | | | | * highlights(js): add parameters * highlights(ts): add Typescript parameters | ||||
| * | Update jsonc to 0.19.0 | Stephan Seitz | 2021-03-16 | 1 | -64/+0 |
| | | |||||
| * | Mark several invalid queries | Stephan Seitz | 2021-03-16 | 1 | -0/+63 |
| | | |||||
| * | Fix readonly keyword in typescript | Stephan Seitz | 2021-03-16 | 1 | -2/+1 |
| | | |||||
| * | chore: create ecma base for use in js and ts which fixes jsx issues | kiyan | 2021-03-10 | 5 | -5/+5 |
| | | |||||
| * | fix: added missing enum indent for typescript | elianiva | 2021-01-21 | 1 | -0/+1 |
| | | |||||
| * | feat: added more indent queries | elianiva | 2021-01-14 | 1 | -0/+6 |
| | | |||||
| * | Javascript unary expression (#712) | Dave Lage | 2020-12-12 | 1 | -2/+0 |
| | | | | | | | | | | * javascript: Move unary_expression matching. * javascript: Move unary_expression matching. * javascript: Update unary to operator * javascript: Update qnary to be more specific | ||||
| * | typescript: Use javascript shorthand_property_identifier | rockerBOO | 2020-11-27 | 1 | -1/+0 |
| | | |||||
| * | typescript: Add optional_parameter ? | rockerBOO | 2020-11-22 | 1 | -2/+2 |
| | | |||||
| * | Add type delimiters | &, Add optional type ? | rockerBOO | 2020-11-15 | 1 | -0/+9 |
| | | |||||
| * | Add additional punctuation, variable descriptors for Typescript | rockerBOO | 2020-11-15 | 1 | -0/+16 |
| | | |||||
| * | feat(js): add jsdoc lang injection | Steven Sojka | 2020-10-27 | 1 | -0/+1 |
| | | |||||
| * | feat(queries): modeline mechanism for base langs | Thomas Vigouroux | 2020-10-11 | 3 | -0/+5 |
| | | | | | | | | | This implements https://github.com/neovim/neovim/pull/13059#issuecomment-704414189 This behaves like modelines and remove the use of the base_language map. Also, this allows to fine-tune what we actually want to include per query, which is better IMO. | ||||
| * | Folds: rename query files to folds.scm to be consistent | Santos Gallegos | 2020-09-14 | 1 | -0/+0 |
| | | | | | We use plural names for all query files except folds. | ||||
| * | feat(folds): add ts and js folds | Steven Sojka | 2020-09-06 | 1 | -0/+5 |
| | | |||||
| * | fix(highlights): fix ts parameter highlights | Steven Sojka | 2020-09-06 | 1 | -2/+2 |
| | | |||||
