| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | feat(highlights): capture wildcard patterns as `@character.special` (#7153) | Omar Valdez | 2024-09-20 | 1 | -1/+5 |
| | | |||||
| * | fix(c_sharp): remove duplicated queries (#7099) | Omar Valdez | 2024-08-30 | 1 | -9/+3 |
| | | |||||
| * | feat(c_sharp): update parser & queries | Amaan Qureshi | 2024-05-11 | 3 | -68/+177 |
| | | |||||
| * | feat: import statement folds for common languages | Riley Bruins | 2024-05-01 | 1 | -1/+4 |
| | | |||||
| * | feat: more `@keyword.type` captures | Riley Bruins | 2024-05-01 | 1 | -8/+11 |
| | | |||||
| * | fix(c_sharp): highlight `raw_string_literal` | neuromagus | 2024-04-08 | 1 | -0/+1 |
| | | |||||
| * | refactor(format): drop extra indentation for field | Phạm Huy Hoàng | 2024-03-21 | 3 | -31/+24 |
| | | |||||
| * | 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 |
| | | |||||
| * | feat(csharp): highlight excape sequences (#6229) | Omar Valdez | 2024-03-03 | 1 | -0/+2 |
| | | |||||
| * | feat(c-sharp): add enum member declaration highlight query | JD Rudie | 2024-02-22 | 1 | -0/+3 |
| | | |||||
| * | chore(c_sharp): highlight tweaks | Amaan Qureshi | 2024-01-24 | 1 | -0/+19 |
| | | |||||
| * | Fixup format (#5934) | Phạm Huy Hoàng | 2024-01-20 | 1 | -0/+2 |
| | | | | | | | | * 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 | 4 | -187/+215 |
| | | |||||
| * | feat!: align standard captures with upstream | Christian Clason | 2024-01-19 | 1 | -22/+22 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | -13/+13 |
| | | |||||
| * | fix: link type in pattern matching correctly | Bartek Łuka | 2024-01-15 | 1 | -0/+3 |
| | | |||||
| * | feat(c_sharp): add missing highlights | Guilherme Soares | 2023-08-16 | 1 | -0/+4 |
| | | | | | | | Added: * `??` and `??=` as operators * `alias` as keyword * `when` as conditional | ||||
| * | chore(injections)!: update injection syntax to 0.9 | Pham Huy Hoang | 2023-08-12 | 1 | -1/+2 |
| | | | | | | | | | | 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 | ||||
| * | fix(c_sharp): highlight `<` & `>` as `@punctuation.bracket` only in type ↵ | Iron-E | 2023-05-04 | 1 | -2/+2 |
| | | | | | | param lists This fixes highlighting of `x > 4`, for example | ||||
| * | feat(c_sharp): add capture for ternary operators | Iron-E | 2023-05-04 | 1 | -0/+2 |
| | | |||||
| * | feat: add `@comment.documentation` where applicable | Amaan Qureshi | 2023-03-05 | 1 | -0/+8 |
| | | |||||
| * | feat!: add `@keyword.coroutine` capture | Amaan Qureshi | 2023-03-03 | 1 | -2/+5 |
| | | |||||
| * | c_sharp: update parser and queries (#4169) | Corentin Brunel | 2023-01-16 | 1 | -1/+0 |
| | | | | | | Remove "nameof" from @keyword.operator Co-authored-by: cbrunel <cbrunel@nomadis.co> | ||||
| * | highlights(c_sharp): add ">>>" ">>>=" | Stephan Seitz | 2022-12-24 | 1 | -0/+2 |
| | | | | | From upstream change https://github.com/tree-sitter/tree-sitter-c-sharp/pull/266/files | ||||
| * | csharp: update query to parser change | Christian Clason | 2022-12-20 | 1 | -1/+0 |
| | | |||||
| * | feat: c# required keyword | Ibrahim Abdelkareem | 2022-11-29 | 1 | -0/+1 |
| | | |||||
| * | highlights(c_sharp): use more specific groups | ObserverOfTime | 2022-11-26 | 1 | -15/+23 |
| | | |||||
| * | feat(spell): support more languages | Lewis Russell | 2022-09-26 | 1 | -1/+1 |
| | | |||||
| * | highlights(c_sharp): use `@method.call` | Stephan Seitz | 2022-09-11 | 1 | -4/+4 |
| | | |||||
| * | Update parsers with C# fixes (#1910) | Stephan Seitz | 2021-10-22 | 1 | -5/+6 |
| | | | | | | | | * highlights(c_sharp): fix queries for parser update * Update c_sharp parser * Fix generic method | ||||
| * | Remove redunant capture. | Aleksei Abakumkin | 2021-08-18 | 1 | -3/+3 |
| | | |||||
| * | Update CSharp highlights. | Aleksei Abakumkin | 2021-08-18 | 1 | -2/+28 |
| | | |||||
| * | fix(c_sharp): Improve highlights | Luxed | 2021-08-06 | 1 | -3/+73 |
| | | |||||
| * | feat(c_sharp): Simplify folds by only folding blocks of code instead of | Luxed | 2021-08-06 | 1 | -16/+13 |
| | | | | | folding the methods and their attributes | ||||
| * | feat(c_sharp): Add first draft of locals | Luxed | 2021-08-06 | 1 | -0/+41 |
| | | |||||
| * | 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(c_sharp): Add preprocessor directives queries | Luxed | 2021-06-04 | 1 | -0/+33 |
| | | |||||
| * | folds(c_sharp): Add basic folding | Luxed | 2021-06-04 | 1 | -0/+18 |
| | | |||||
| * | highlights(c_sharp): lots of improvements | Luxed | 2021-06-04 | 1 | -12/+37 |
| | | |||||
| * | highlights(c_sharp): highlight namespaces | Stephan Seitz | 2021-06-01 | 1 | -4/+9 |
| | | |||||
| * | highlights(c_sharp): add heuristic for type highlight | Stephan Seitz | 2021-06-01 | 1 | -0/+4 |
| | | |||||
| * | highlights(c_sharp): highlight verbatim_string_literal | Stephan Seitz | 2021-06-01 | 1 | -0/+1 |
| | | |||||
| * | highlights(c#): highlight calls of methods | Stephan Seitz | 2021-06-01 | 1 | -2/+6 |
| | | |||||
| * | highlights(c_sharp): improve highlighting of interpolations | Stephan Seitz | 2021-06-01 | 1 | -6/+2 |
| | | |||||
| * | 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 | ||||
| * | highlights(csharp): add "with" as `@keyword.operator` | Stephan Seitz | 2021-04-22 | 1 | -6/+10 |
| | | |||||
| * | Add comment parser to highlight comment tags (#893) | Santos Gallegos | 2021-03-12 | 1 | -0/+1 |
| | | | | Closes #236 | ||||
