| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | bot(lockfile): update apex, editorconfig, elixir, ledger, markdown, ↵ | nvim-treesitter-bot[bot] | 2024-12-02 | 1 | -3/+0 |
| | | | | | markdown_inline, sflog, soql, sosl, styled, swift, xresources | ||||
| * | feat(highlights): capture wildcard patterns as `@character.special` (#7153) | Omar Valdez | 2024-09-20 | 1 | -0/+2 |
| | | |||||
| * | feat(highlights): capture wildcard imports as `@character.special` | Omar Valdez | 2024-08-01 | 1 | -0/+4 |
| | | |||||
| * | fix(java): compact constructor highlights (#6531) | Brayden Zee | 2024-05-02 | 1 | -0/+3 |
| | | |||||
| * | feat: more `@keyword.type` captures | Riley Bruins | 2024-05-01 | 1 | -4/+7 |
| | | |||||
| * | feat(java): add when operator (#6420) | Guilherme Soares | 2024-04-09 | 1 | -0/+1 |
| | | |||||
| * | refactor(format): drop extra indentation for field | Phạm Huy Hoàng | 2024-03-21 | 1 | -3/+2 |
| | | |||||
| * | 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 | -2/+2 |
| | | |||||
| * | chore: query formatting | Pham Huy Hoang | 2024-01-19 | 1 | -39/+59 |
| | | |||||
| * | feat!: align standard captures with upstream | Christian Clason | 2024-01-19 | 1 | -16/+16 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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(java): move attributes after constants | ObserverOfTime | 2023-12-04 | 1 | -9/+9 |
| | | |||||
| * | feat(java): highlight `var` as `@type.builtin` | Ibrahim Delice | 2023-10-13 | 1 | -0/+2 |
| | | |||||
| * | fix(java): move @ to `@attribute` | Ibrahim Delice | 2023-10-13 | 1 | -1/+2 |
| | | |||||
| * | java(highlights): add missing import class pattern (#5483) | Pham Huy Hoang | 2023-10-06 | 1 | -2/+2 |
| | | |||||
| * | feat(java): add highlights to string interpolation | Pham Huy Hoang | 2023-08-18 | 1 | -0/+2 |
| | | |||||
| * | java highlights: annotation type declaration and AT interface keyword | homedirectory | 2023-06-21 | 1 | -0/+3 |
| | | |||||
| * | fix(java): capture type parameter brackets as `@punctuation.delimiter` | Iron-E | 2023-05-04 | 1 | -0/+3 |
| | | | | It is currently highlighted as `@operator` | ||||
| * | feat: add `@comment.documentation` where applicable | Amaan Qureshi | 2023-03-05 | 1 | -0/+9 |
| | | |||||
| * | feat(java): distinguish escape sequences, move certain keywords to more ↵ | Amaan Qureshi | 2023-02-23 | 1 | -127/+131 |
| | | | | | appropriate places | ||||
| * | highlights(java): fix '!',param,global group | Josef Litoš | 2022-12-19 | 1 | -2/+5 |
| | | |||||
| * | highlights: create subscoping for ternary operator | Stephan Seitz | 2022-12-02 | 1 | -1/+1 |
| | | | | | | | | | | | After https://github.com/nvim-treesitter/nvim-treesitter/issues/470, we decided to use `@conditional` for ternary operator instead of operator despite `@conditional` is documented for keywords only. A sub-scoping can make it easier for people to highlight this operator group differently. Also unify the usage of `@conditional...` across languages. | ||||
| * | highlights(java): use more specific groups | ObserverOfTime | 2022-11-26 | 1 | -13/+24 |
| | | |||||
| * | feat(spell): support more languages | Lewis Russell | 2022-09-26 | 1 | -1/+1 |
| | | |||||
| * | highlights(java): add "non-sealed" keyword | Stephan Seitz | 2022-08-23 | 1 | -0/+1 |
| | | |||||
| * | Modified queries/java/highlights.scm | anthony-S93 | 2022-08-22 | 1 | -0/+2 |
| | | |||||
| * | Split func/method definition from calls in several programming language queries | lfenzo | 2022-08-03 | 1 | -1/+1 |
| | | |||||
| * | highlights(java): add support for `text_block`s | Stephan Seitz | 2022-04-16 | 1 | -1/+1 |
| | | |||||
| * | feat(java)(highlights): add missing highlights for `@type` | captainko | 2022-01-18 | 1 | -0/+6 |
| | | |||||
| * | highlights/injections/indents(java): comment -> line_comment,block_comment | Stephan Seitz | 2022-01-16 | 1 | -1/+4 |
| | | | | | Ref https://github.com/tree-sitter/tree-sitter-java/pull/93 | ||||
| * | Prefer lua-match over match | Lewis Russell | 2021-11-23 | 1 | -3/+3 |
| | | | | | as string.find is much quicker than vim.regex:match* | ||||
| * | feat(keywords) merge return and yield into keyword.return group | antonk52 | 2021-07-04 | 1 | -4/+1 |
| | | |||||
| * | feat(keywords) add keyword.return & keyword.yield | antonk52 | 2021-07-04 | 1 | -2/+8 |
| | | |||||
| * | highlights(java): add new keyword "yield" | Stephan Seitz | 2021-04-17 | 1 | -0/+1 |
| | | | | | | https://github.com/tree-sitter/tree-sitter-java/pull/78 added support for enhanced switch statements | ||||
| * | Add support for Java records | Stephan Seitz | 2021-04-10 | 1 | -0/+3 |
| | | | | | Ref: https://github.com/tree-sitter/tree-sitter-java/pull/73 | ||||
| * | highlights(java): Highlight fields (members and member access) (#1107) | Stephan Seitz | 2021-03-26 | 1 | -0/+8 |
| | | |||||
| * | highlights(java): Highlight spread parameters | Stephan Seitz | 2021-02-19 | 1 | -1/+5 |
| | | |||||
| * | highlights(java): fix constant highlighting (only UPPERCASE_LETTERS) | Stephan Seitz | 2021-02-19 | 1 | -1/+1 |
| | | |||||
| * | Ternary | Chinmay Dalal | 2020-11-19 | 1 | -1/+2 |
| | | |||||
| * | Add @keyword.operator for operators that are English words and add ↵ | Stephan Seitz | 2020-09-19 | 1 | -6/+14 |
| | | | | | @exception for Java/JS | ||||
| * | Fix #307: Use and document TSVariable/TSVariableBuiltin in all languages | Stephan Seitz | 2020-09-14 | 1 | -2/+5 |
| | | |||||
| * | fix(queries): use vim-match for non lua regexes | Steven Sojka | 2020-08-16 | 1 | -1/+1 |
| | | |||||
| * | [java] Add label highlight | Chinmay Dalal | 2020-08-16 | 1 | -0/+4 |
| | | |||||
| * | Java highlights/locals: Add catch_formal_parameter | Stephan Seitz | 2020-07-27 | 1 | -0/+2 |
| | | |||||
| * | Java highlights: Add highlight for this | Stephan Seitz | 2020-07-27 | 1 | -1/+1 |
| | | |||||
| * | Java highlights: Add binary integer literals | Stephan Seitz | 2020-07-01 | 1 | -0/+1 |
| | | |||||
| * | Java highlights: Add operators ":" "?" | Stephan Seitz | 2020-06-30 | 1 | -0/+2 |
| | | |||||
| * | Java highlights: Add parameter highlight for single-parameter lambdas | Stephan Seitz | 2020-06-30 | 1 | -1/+4 |
| | | |||||
| * | Add method reference operator | Chinmay Dalal | 2020-06-29 | 1 | -0/+1 |
| | | |||||
| * | Java highlights: Capture parameters in declaration (#93) | Chinmay Dalal | 2020-06-29 | 1 | -31/+64 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Capture parameters in declaration * Refactor (new syntax) * Fix spaces * Fix capture (java method parameters) * Improve java parameter capture * Fix bracket and whitespace * Fix java query * Fix java query Co-authored-by: Thomas Vigouroux <39092278+vigoux@users.noreply.github.com> * Add capture for lambda parameters, remove redundant captures, add -> operator * Previous commit wasn't saved properly * Fix formatting * Changes suggested in PR https://github.com/nvim-treesitter/nvim-treesitter/pull/93#pullrequestreview-435630553 * Add bitwise operators * Re-add builtin operators * remove left shift, add ^= * Add &= and |= * remove @variable * Remove duplicate Co-authored-by: Thomas Vigouroux <39092278+vigoux@users.noreply.github.com> | ||||
