| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | feat!: drop modules, general refactor and cleanup | Christian Clason | 2025-05-12 | 5 | -239/+0 |
| | | |||||
| * | 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 |
| | | |||||
| * | chore: query formatting | Pham Huy Hoang | 2024-01-19 | 4 | -30/+65 |
| | | |||||
| * | feat!: align standard captures with upstream | Christian Clason | 2024-01-19 | 1 | -6/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | -16/+16 |
| | | |||||
| * | chore(injections)!: update injection syntax to 0.9 | Pham Huy Hoang | 2023-08-12 | 1 | -2/+3 |
| | | | | | | | | | | 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 | ||||
| * | use indent.X syntax for captures and properties of set directives | George Harker | 2023-03-24 | 1 | -4/+4 |
| | | | | | | | | | update CONTRIBUTING.md adjust indents for bass fix doc capture comment | ||||
| * | feat: add `@comment.documentation` where applicable | Amaan Qureshi | 2023-03-05 | 1 | -2/+3 |
| | | |||||
| * | update tests | Alvaro Muñoz | 2023-01-31 | 1 | -8/+8 |
| | | |||||
| * | fix(ql): Add moduleMember to indent file | Alvaro Muñoz | 2023-01-31 | 1 | -0/+1 |
| | | |||||
| * | highlights(ql): use more specific groups | ObserverOfTime | 2022-11-26 | 1 | -8/+13 |
| | | |||||
| * | feat(ql): add folding queries | Alvaro Muñoz | 2022-11-05 | 1 | -0/+7 |
| | | |||||
| * | highlights(ql): follow upstream refactor of qualModuleExpr | Stephan Seitz | 2022-08-15 | 1 | -2/+1 |
| | | | | | https://github.com/tree-sitter/tree-sitter-ql/commit/13155b740d4040e74727a9a698277805498a6a85 | ||||
| * | Revert "Comment: use `@combined` to create just one tree per buffer (#1252)" | Santos Gallegos | 2021-05-07 | 1 | -1/+1 |
| | | | | | This reverts commit 4a7a713c527f57c355bc817f16fc6d955b8cce9b. | ||||
| * | Comment: use `@combined` to create just one tree per buffer (#1252) | Santos Gallegos | 2021-04-28 | 1 | -1/+1 |
| | | | | | | | | | | | | | * Comment: use `@combined` to create just one tree per buffer There is no need to create a tree per line/block for comments. Should fix https://github.com/nvim-treesitter/nvim-treesitter/issues/1251 * Add injections for scss * Fix jsonc * Combine jsdoc | ||||
| * | replace @class with @type | Alvaro Muñoz | 2021-04-23 | 1 | -3/+3 |
| | | |||||
| * | Add Codeql indents.scm | Alvaro Muñoz | 2021-04-23 | 2 | -5/+28 |
| | | |||||
| * | Mark several invalid queries | Stephan Seitz | 2021-03-16 | 1 | -1/+2 |
| | | |||||
| * | Add comment parser to highlight comment tags (#893) | Santos Gallegos | 2021-03-12 | 1 | -0/+5 |
| | | | | Closes #236 | ||||
| * | More improvements | Alvaro Muñoz | 2020-11-12 | 1 | -0/+2 |
| | | |||||
| * | QL: support modules | Alvaro Muñoz | 2020-11-12 | 1 | -0/+3 |
| | | |||||
| * | improce type highlighting | Alvaro Muñoz | 2020-11-11 | 1 | -0/+1 |
| | | |||||
| * | minor improvments for QL | Alvaro Muñoz | 2020-11-07 | 1 | -1/+3 |
| | | |||||
| * | make query-checker happy | Alvaro Muñoz | 2020-10-01 | 1 | -1/+1 |
| | | |||||
| * | change module to namespace | Alvaro Muñoz | 2020-10-01 | 1 | -1/+1 |
| | | |||||
| * | CodeQL locals.scm queries | Alvaro Muñoz | 2020-10-01 | 1 | -0/+29 |
| | | |||||
| * | fine tune keyword highlights | Alvaro Muñoz | 2020-09-30 | 1 | -23/+41 |
| | | |||||
| * | remove locals.scm | Alvaro Muñoz | 2020-09-30 | 1 | -26/+0 |
| | | |||||
| * | remove non-used captures | Alvaro Muñoz | 2020-09-30 | 1 | -18/+18 |
| | | |||||
| * | initial support for CodeQL | Alvaro Muñoz | 2020-09-30 | 2 | -0/+129 |
