| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | feat!: drop modules, general refactor and cleanup | Christian Clason | 2025-05-12 | 4 | -537/+0 |
| | | |||||
| * | bot(lockfile): update c, comment, cpp, embedded_template, kotlin, latex, ↵ | nvim-treesitter-bot[bot] | 2024-08-19 | 1 | -1/+1 |
| | | | | | php, php_only, ruby, scala, templ | ||||
| * | feat(highlights): capture wildcard imports as `@character.special` | Omar Valdez | 2024-08-01 | 1 | -0/+2 |
| | | |||||
| * | refactor(queries): Remove quotes from properties in set! directive | Omar Valdez | 2024-07-28 | 1 | -4/+4 |
| | | |||||
| * | 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 |
| | | |||||
| * | feat(format-scripts): linewrap predicates | 再生花 | 2024-02-23 | 1 | -2/+12 |
| | | | | "format-ignore".kick() | ||||
| * | fix(kotlin): remove slow highlight and local pattern (#5954) | Anthony Shi | 2024-02-06 | 2 | -10/+10 |
| | | | | | This is a parser bug that needs to be fixed; temporary workaround to remove the ~0.5s delay on opening highlight and locals queries. | ||||
| * | chore: format queries | Phạm Huy Hoàng | 2024-01-21 | 1 | -5/+5 |
| | | |||||
| * | 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 | ||||
| * | fix(highlights): improve member/property distinction | ObserverOfTime | 2024-01-19 | 1 | -3/+3 |
| | | |||||
| * | chore: query formatting | Pham Huy Hoang | 2024-01-19 | 4 | -359/+304 |
| | | |||||
| * | feat!: align standard captures with upstream | Christian Clason | 2024-01-19 | 1 | -13/+13 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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(injections): add printf format strings | ObserverOfTime | 2024-01-19 | 1 | -0/+8 |
| | | |||||
| * | feat(locals)!: switch to upstream captures | Christian Clason | 2024-01-19 | 1 | -14/+14 |
| | | |||||
| * | fix(kotlin): improve highlights | ObserverOfTime | 2023-11-10 | 1 | -12/+21 |
| | | | | | Co-authored-by: Anthony Shi <69449791+anthony-S93@users.noreply.github.com> | ||||
| * | chore(injections)!: update injection syntax to 0.9 | Pham Huy Hoang | 2023-08-12 | 1 | -23/+24 |
| | | | | | | | | | | 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 | ||||
| * | kotlin: update parser and queries | Saleh Bakra'a | 2023-04-06 | 1 | -2/+3 |
| | | | | Update `queries/kotlin/locals.scm` to use the the newly exposed `function_value_parameters` node. | ||||
| * | feat(kotlin): update queries from upstream changes | Amaan Qureshi | 2023-03-26 | 2 | -24/+19 |
| | | |||||
| * | feat: add `@comment.documentation` where applicable | Amaan Qureshi | 2023-03-05 | 1 | -3/+4 |
| | | |||||
| * | feat!: add `@keyword.coroutine` capture | Amaan Qureshi | 2023-03-03 | 1 | -1/+7 |
| | | |||||
| * | docs: fix typos | dundargoc | 2023-02-23 | 1 | -1/+1 |
| | | |||||
| * | Update highlights.scm | Josef Litoš | 2023-02-22 | 1 | -2/+2 |
| | | |||||
| * | Update queries/kotlin/highlights.scm | Josef Litoš | 2023-02-22 | 1 | -1/+1 |
| | | | | Co-authored-by: ObserverOfTime <chronobserver@disroot.org> | ||||
| * | feat(kotlin): improved highlight queries | JosefLitos | 2023-02-22 | 1 | -2/+5 |
| | | |||||
| * | highlights(kotlin): fix function highlights | ObserverOfTime | 2023-02-12 | 1 | -1/+5 |
| | | |||||
| * | highlights(kotlin): package keyword and declaration | Ananda Umamil | 2023-01-14 | 1 | -2/+2 |
| | | |||||
| * | highlights(kotlin): use more specific groups | ObserverOfTime | 2022-11-26 | 1 | -2/+5 |
| | | |||||
| * | highlights: use @preproc where appropriate | ObserverOfTime | 2022-10-15 | 1 | -4/+3 |
| | | |||||
| * | highlights(kotlin): add companion keyword | ObserverOfTime | 2022-10-15 | 1 | -0/+3 |
| | | |||||
| * | feat(spell): support more languages | Lewis Russell | 2022-09-26 | 1 | -0/+2 |
| | | |||||
| * | Split func/method definition from calls in lotlin highlighting queries | lfenzo | 2022-08-03 | 1 | -2/+2 |
| | | |||||
| * | fix(kotlin): use _import for type captures | Sal Bakraa | 2022-01-08 | 1 | -4/+4 |
| | | |||||
| * | fix(kotlin): use @attribute instead of @annotation | Sal Bakraa | 2022-01-08 | 1 | -6/+6 |
| | | |||||
| * | fix(kotlin): use correct node for when expression folds | Sal Bakraa | 2022-01-08 | 1 | -1/+1 |
| | | |||||
| * | fix(kotlin): fix typo in locals query | Sal Bakraa | 2022-01-08 | 1 | -1/+1 |
| | | |||||
| * | feat(kotlin): include a folds and a locals query | Sal Bakraa | 2022-01-08 | 2 | -0/+100 |
| | | |||||
| * | fix(kotlin): include regex in injections query | Sal Bakraa | 2022-01-08 | 1 | -0/+31 |
| | | |||||
| * | fix(kotlin): update highlights query to match new parser | Sal Bakraa | 2022-01-08 | 1 | -161/+375 |
| | | |||||
| * | Kotlin queries: Handle package statements | Joaquín León | 2021-09-18 | 1 | -0/+5 |
| | | |||||
| * | New kotlin parser | Joakker | 2021-09-15 | 1 | -157/+156 |
| | | |||||
| * | Use `@keyword.function` consistently | Sergio Alejandro Vargas | 2021-07-06 | 1 | -1/+1 |
| | | |||||
| * | feat(keywords) merge return and yield into keyword.return group | antonk52 | 2021-07-04 | 1 | -3/+1 |
| | | |||||
| * | feat(keywords) add keyword.return & keyword.yield | antonk52 | 2021-07-04 | 1 | -1/+4 |
| | | |||||
| * | 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 | ||||
| * | attribute in stead of annotation | Tormod Alf Try Tufteland | 2021-03-20 | 1 | -3/+3 |
| | | |||||
| * | kotlin: updated parser, and added annotation highlight again | Tormod Alf Try Tufteland | 2021-03-20 | 1 | -4/+7 |
| | | |||||
| * | Update Kotlin parser | Stephan Seitz | 2021-03-16 | 1 | -3/+4 |
| | | |||||
| * | Add comment parser to highlight comment tags (#893) | Santos Gallegos | 2021-03-12 | 1 | -0/+1 |
| | | | | Closes #236 | ||||
