| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | feat(sql): add folds (#7686) | Raafat Turki | 2025-02-26 | 1 | -0/+1 |
| | | |||||
| * | fix(sql): remove unused rules | Amaan Qureshi | 2024-10-16 | 1 | -7/+0 |
| | | |||||
| * | refactor(format): drop extra indentation for field | Phạm Huy Hoàng | 2024-03-21 | 1 | -4/+3 |
| | | |||||
| * | feat(sql): highlight fields in column definition | Omar Valdez | 2024-03-20 | 1 | -0/+3 |
| | | |||||
| * | feat(highlights)!: `@keyword.storage` → `@keyword.modifier` | Jaehwang Jung | 2024-03-16 | 1 | -1/+1 |
| | | |||||
| * | feat(highlights)!: keyword `@type.qualifier` → `@keyword.modifier` | Jaehwang Jung | 2024-03-16 | 1 | -1/+1 |
| | | |||||
| * | chore: format queries | Phạm Huy Hoàng | 2024-01-21 | 1 | -2/+2 |
| | | |||||
| * | chore: query formatting | Pham Huy Hoang | 2024-01-19 | 3 | -94/+98 |
| | | |||||
| * | 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` | ||||
| * | fix(sql): update queries from upstream | Derek Stride | 2023-11-02 | 1 | -37/+78 |
| | | |||||
| * | highlights(sql): add t-sql specific data types (#5311) | Matthias Q | 2023-08-25 | 1 | -0/+9 |
| | | |||||
| * | chore(injections)!: update injection syntax to 0.9 | Pham Huy Hoang | 2023-08-12 | 1 | -2/+5 |
| | | | | | | | | | | 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 | ||||
| * | feat(sql): add missing keywords | Matthias Queitsch | 2023-08-07 | 1 | -0/+24 |
| | | |||||
| * | feat(sql): add new keywords | Matthias Queitsch | 2023-07-30 | 1 | -0/+3 |
| | | |||||
| * | feat(sql): update queries for newly added keywords | Matthias Q | 2023-07-18 | 2 | -0/+3 |
| | | |||||
| * | feat(sql): update highlights from upstream | Derek Stride | 2023-07-05 | 1 | -6/+38 |
| | | |||||
| * | feat(sql): json operator highlights | Dian Fay | 2023-06-29 | 1 | -2/+4 |
| | | |||||
| * | highlights(sql): add `filter` keyword | Matthias Q | 2023-06-29 | 1 | -0/+1 |
| | | |||||
| * | fix(sql): compound_statement -> block | Dian M Fay | 2023-06-25 | 1 | -2/+1 |
| | | | | | | a little more reorganizing; we've copied the indents file into tree-sitter-sql and it tests okay there. | ||||
| * | highlights(sql): remove `keyword_group_concat` after refactor | Matthias Queitsch | 2023-06-23 | 1 | -1/+0 |
| | | |||||
| * | highlights(sql): fix order for `invocation` | Matthias Queitsch | 2023-06-22 | 1 | -5/+5 |
| | | |||||
| * | fix(sql): invocation | Dian M Fay | 2023-06-22 | 1 | -2/+3 |
| | | |||||
| * | fix(sql): field alias moved to term | Dian M Fay | 2023-06-22 | 1 | -1/+0 |
| | | |||||
| * | fix(sql): table_alias -> alias | Dian M Fay | 2023-06-22 | 1 | -2/+2 |
| | | |||||
| * | fix(sql): table_reference -> object_reference | Dian M Fay | 2023-06-22 | 1 | -1/+1 |
| | | |||||
| * | feat(sql): add new keywords for optimization statements and renames | Matthias Q | 2023-06-19 | 1 | -1/+16 |
| | | |||||
| * | indents(sql): initial support (#4857) | Matthias Q | 2023-05-25 | 1 | -0/+27 |
| | | | | | | * indents(sql): initial support * indents(sql): fix queries and lua style | ||||
| * | highlights(sql): add keyword `overwrite` | Matthias Queitsch | 2023-05-23 | 1 | -0/+1 |
| | | |||||
| * | highlights(sql): refactor `count` to generic `invocation` | Matthias Queitsch | 2023-05-15 | 1 | -4/+0 |
| | | |||||
| * | feat(sql): add more keywords | Derek Stride | 2023-05-08 | 1 | -2/+6 |
| | | |||||
| * | highlights(sql): add `full`, `any` and `some` keywords | Matthias Queitsch | 2023-03-31 | 1 | -0/+3 |
| | | |||||
| * | update sql parser and highlights | Trey Wood | 2023-03-29 | 1 | -0/+1 |
| | | |||||
| * | highlights(sql): add new keywords for views and defaults | Matthias Queitsch | 2023-03-22 | 1 | -0/+6 |
| | | |||||
| * | highlights(sql): add new keywords and datatypes | Matthias Queitsch | 2023-03-08 | 1 | -0/+10 |
| | | |||||
| * | highlights(sql): keywords as `@storageclass` | Matthias Queitsch | 2023-03-04 | 1 | -15/+20 |
| | | |||||
| * | highlights(sql): added missing kwds, added `@attribute` and ↵ | Matthias Queitsch | 2023-03-04 | 1 | -11/+14 |
| | | | | | @`type.qualifier` kwds | ||||
| * | highlights(sql): add missing keywords | Matthias Queitsch | 2023-03-04 | 1 | -19/+62 |
| | | |||||
| * | highlights(sql): update highlight queriesv0.8.4 | Matthias Queitsch | 2023-02-20 | 1 | -20/+63 |
| | | | | | | | | | | | | | | | | | | | | | highlights(sql): add bool, attributes, conditionals highlights(sql): add builtins highlights(sql): add parameters highlights(sql): add temp table attribute update sql highlights; add floats bump sql version bump upstream sql version highlights(sql): fix float regex fix upstream changes; bump sql version | ||||
| * | sql: update parser and query (#3820) | Derek Stride | 2022-11-18 | 1 | -0/+3 |
| | | | | Add better `term` nodes in the select expression | ||||
| * | highlights(sql): remove grouped keyword | Matthias Queitsch | 2022-09-14 | 1 | -2/+1 |
| | | |||||
| * | highlights(sql): removed duplicate keywords, added new keyword, hashing | Matthias Queitsch | 2022-09-14 | 1 | -7/+12 |
| | | | | | as function.calls | ||||
| * | highlights(sql): missing keyword & marginalia | derekstride | 2022-09-08 | 1 | -2/+2 |
| | | |||||
| * | removed duplicated kw, start capturing subtree earlier | Matthias Queitsch | 2022-09-08 | 1 | -3/+3 |
| | | |||||
| * | change table_expression -> table_reference | Matthias Queitsch | 2022-09-08 | 1 | -2/+2 |
| | | |||||
| * | account for added and renamed keywords | Matthias Queitsch | 2022-08-29 | 1 | -2/+7 |
| | | |||||
| * | SQL highlight queries rely on latest parser AST | derekstride | 2022-08-05 | 1 | -5/+4 |
| | | |||||
| * | Split func/method definition from calls in several programming language queries | lfenzo | 2022-08-03 | 1 | -2/+2 |
| | | |||||
| * | Highlight sql comments (#3178) | Robert Liebowitz | 2022-07-14 | 1 | -0/+1 |
| | | |||||
| * | Update lockfile and highlight queries | derekstride | 2022-07-08 | 1 | -5/+78 |
| | | |||||
| * | Initial SQL support | derekstride | 2022-07-08 | 2 | -0/+104 |
