| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | feat!: drop modules, general refactor and cleanup | Christian Clason | 2025-05-12 | 3 | -288/+0 |
| | | |||||
| * | fix(leo): intentation fix of parenthesis | Robert Horvath | 2025-01-03 | 1 | -2/+15 |
| | | |||||
| * | fix(leo): indent } now properly dedents | Robert Horvath | 2024-12-30 | 1 | -18/+32 |
| | | |||||
| * | feat(leo): highlights casting and record expressions added | Robert Horvath | 2024-12-30 | 1 | -2/+21 |
| | | |||||
| * | bot(lockfile): update http, ini, leo | nvim-treesitter-bot[bot] | 2024-08-30 | 1 | -4/+1 |
| | | |||||
| * | fix(leo): update queries (#7086) | r001 | 2024-08-28 | 1 | -11/+24 |
| | | | | | | | | | | * small bugfixes of variables, records, and struct highlighting * lockfile.json update * fixed @constant bug, and added self.address, and network.id as builtins to highlight * fixed associated function calls | ||||
| * | feat(leo): add string literals (#7084) | r001 | 2024-08-26 | 1 | -0/+2 |
| | | |||||
| * | feat(leo): async keyword (#7083) | r001 | 2024-08-25 | 1 | -0/+2 |
| | | | | | | * async keyword added * lockfile update | ||||
| * | refactor(queries): Remove quotes from properties in set! directive | Omar Valdez | 2024-07-28 | 1 | -1/+1 |
| | | |||||
| * | feat: more `@keyword.type` captures | Riley Bruins | 2024-05-01 | 1 | -2/+5 |
| | | |||||
| * | feat(highlights)!: keyword `@type.qualifier` → `@keyword.modifier` | Jaehwang Jung | 2024-03-16 | 1 | -1/+1 |
| | | |||||
| * | Fixup format (#5934) | Phạm Huy Hoàng | 2024-01-20 | 1 | -0/+1 |
| | | | | | | | | * fix(format): newline between top-level field defs * fixup: newline between node and comment * fixup: optimize pattern | ||||
| * | chore: query formatting | Pham Huy Hoang | 2024-01-19 | 3 | -121/+125 |
| | | |||||
| * | feat!: align standard captures with upstream | Christian Clason | 2024-01-19 | 1 | -10/+10 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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` | ||||
| * | indents added new language highlights added (#5777) | r001 | 2023-12-10 | 2 | -0/+35 |
| | | |||||
| * | fix(leo): highlights fixes (#5563) | r001 | 2023-10-23 | 1 | -3/+9 |
| | | | | | | | | | | * make sure affine_group has priority, so parens and comma will not be miscolored; added `annotation` as @attribute * `then` is not used as conditional, so moved to keywords * finalize function highlight added * differentiate between constant and variable variable identifiers | ||||
| * | feat: leo parser and queries (#5542) | r001 | 2023-10-22 | 2 | -0/+179 |
