| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | test(queries): print ALL errors at end | Christian Clason | 2024-01-19 | 1 | -12/+9 | |
| | | ||||||
| * | feat!: align standard captures with upstream | Christian Clason | 2024-01-19 | 263 | -2322/+2341 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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` | |||||
| * | chore(tests): consistent captures | Christian Clason | 2024-01-19 | 60 | -873/+872 | |
| | | ||||||
| * | feat(injections): add printf format strings | ObserverOfTime | 2024-01-19 | 13 | -0/+181 | |
| | | ||||||
| * | feat(locals)!: switch to upstream captures | Christian Clason | 2024-01-19 | 109 | -1341/+1341 | |
| | | ||||||
| * | revert "fix(config)!: always install parsers bundled with nvim"v0.9.2 | Christian Clason | 2024-01-19 | 1 | -17/+2 | |
| | | ||||||
| * | Update parsers: scala, wing | GitHub | 2024-01-19 | 1 | -2/+2 | |
| | | ||||||
| * | fixup: proper union of tables | Christian Clason | 2024-01-18 | 1 | -1/+13 | |
| | | ||||||
| * | Update parsers: gitcommit, markdown, markdown_inline, vimdoc, wing | GitHub | 2024-01-18 | 1 | -5/+5 | |
| | | ||||||
| * | fixup: empty ensure_installed | Christian Clason | 2024-01-17 | 1 | -1/+1 | |
| | | ||||||
| * | fixup: don't extend _with_ 'all' | Christian Clason | 2024-01-17 | 1 | -1/+1 | |
| | | ||||||
| * | Update parsers: gleam, gomod, wing | GitHub | 2024-01-17 | 1 | -3/+3 | |
| | | ||||||
| * | fixup: ensure_installed can be 'all' | Christian Clason | 2024-01-16 | 1 | -1/+3 | |
| | | ||||||
| * | fix(config)!: always install parsers bundled with nvim | Christian Clason | 2024-01-16 | 1 | -1/+2 | |
| | | ||||||
| * | Update parsers: perl, todotxt | GitHub | 2024-01-16 | 1 | -2/+2 | |
| | | ||||||
| * | feat!: bump minimum Nvim version to 0.9.2 | Christian Clason | 2024-01-15 | 2 | -3/+3 | |
| | | | | | required for empty injection fix | |||||
| * | fix: link type in pattern matching correctly | Bartek Łuka | 2024-01-15 | 1 | -0/+3 | |
| | | ||||||
| * | Update parsers: awk | GitHub | 2024-01-15 | 1 | -1/+1 | |
| | | ||||||
| * | Update parsers: erlang, php, templ, wing | GitHub | 2024-01-14 | 1 | -4/+4 | |
| | | ||||||
| * | Update parsers: templ, tlaplus | GitHub | 2024-01-07 | 1 | -2/+2 | |
| | | ||||||
| * | fix(php): adjust to parser refactor | Christian Clason | 2024-01-07 | 2 | -1/+2 | |
| | | ||||||
| * | Update parsers: ada, ruby | GitHub | 2024-01-06 | 1 | -2/+2 | |
| | | ||||||
| * | highlights(html): character references (a.k.a. entities) | Calum Smith | 2024-01-05 | 1 | -0/+2 | |
| | | ||||||
| * | ci: bump actions to latest | Christian Clason | 2024-01-05 | 6 | -9/+9 | |
| | | ||||||
| * | Update parsers: astro, php, ruby, templ, wing | GitHub | 2024-01-05 | 1 | -5/+5 | |
| | | ||||||
| * | fix(markdown_inline): latex highlight injection (#5397) | Zhuofeng Wang | 2024-01-05 | 1 | -1/+2 | |
| | | | | | The `injection.include-children` is needed in markdown_inline parser. | |||||
| * | fix(latex): highlight text functions | Riley Bruins | 2024-01-04 | 1 | -0/+1 | |
| | | ||||||
| * | Update parsers: ada, ocaml, ocaml_interface, sql, wing | GitHub | 2024-01-03 | 1 | -5/+5 | |
| | | ||||||
| * | Update parsers: scala, templ, v, wing | GitHub | 2024-01-03 | 1 | -4/+4 | |
| | | ||||||
| * | fix(julia): add missing capture of ":" in selected import | Christian Degnbol Madsen | 2024-01-02 | 1 | -0/+2 | |
| | | | | | If writing a selected import, e.g. `using BSON: @load`, the colon isn't currently captured. This change captures it as `@punctuation.delimiter`. | |||||
| * | Update parsers: nim, templ, wing | GitHub | 2023-12-30 | 1 | -3/+3 | |
| | | ||||||
| * | Update parsers: perl, rst, v, wing | GitHub | 2023-12-29 | 1 | -4/+4 | |
| | | ||||||
| * | Update parsers: perl, scala, wing | GitHub | 2023-12-28 | 1 | -3/+3 | |
| | | ||||||
| * | Update parsers: nickel, nix, scala, v, wing | GitHub | 2023-12-27 | 1 | -5/+5 | |
| | | ||||||
| * | Update parsers: haskell, templ | GitHub | 2023-12-24 | 1 | -2/+2 | |
| | | ||||||
| * | fixup(luau): align `@string.regex` to the injections (#5829) | Riley Bruins | 2023-12-24 | 1 | -15/+3 | |
| | | ||||||
| * | fix: cleanup luap injection queries | Riley Bruins | 2023-12-23 | 2 | -41/+5 | |
| | | ||||||
| * | feat: more `@string.regex` highlights | Riley Bruins | 2023-12-23 | 3 | -0/+62 | |
| | | ||||||
| * | Update parsers: elm, wing | GitHub | 2023-12-23 | 1 | -2/+2 | |
| | | ||||||
| * | feat(luap): highlights more consistent with regex (#5819) | Riley Bruins | 2023-12-23 | 2 | -9/+11 | |
| | | ||||||
| * | fix(julia): pipe function highlight (#5815) | Christian Degnbol Madsen | 2023-12-22 | 1 | -0/+6 | |
| | | | | | In Julia when piping into a function the function should be highlighted as a function call, and not a variable. | |||||
| * | Update parsers: apex, scala, soql, sosl, tlaplus, wing | GitHub | 2023-12-22 | 1 | -6/+6 | |
| | | ||||||
| * | fix(cpp): incorrect indent of class with opening { on new line (#5811) | Jędrzej Boczar | 2023-12-22 | 2 | -2/+9 | |
| | | ||||||
| * | vimdoc: add note, warning, deprecated (#5817) | Christian Clason | 2023-12-21 | 2 | -1/+7 | |
| | | ||||||
| * | Add @nospell annotation to label definitions and references | Ahnaf Rafi | 2023-12-21 | 1 | -0/+3 | |
| | | ||||||
| * | Update parsers: beancount, wing | GitHub | 2023-12-21 | 1 | -2/+2 | |
| | | ||||||
| * | highlights(haskell): add `fail` to exception highlights | Marc Jakobi | 2023-12-20 | 1 | -0/+1 | |
| | | ||||||
| * | highlights(haskell): namespaced string quasiquote | Marc Jakobi | 2023-12-20 | 1 | -1/+9 | |
| | | ||||||
| * | Update parsers: gleam, styled, v, wing | GitHub | 2023-12-20 | 1 | -4/+4 | |
| | | ||||||
| * | Update README | Github Actions | 2023-12-19 | 1 | -0/+1 | |
| | | ||||||
