| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | feat(vim): highlight prepend operator | Omar Valdez | 2024-11-21 | 1 | -0/+1 |
| | | |||||
| * | fix(vimscript): miscellaneous fixups | Riley Bruins | 2024-04-19 | 1 | -2/+7 |
| | | | | | | | - Highlights the `abort` keyword - Moves `is(not)?` from `@operator` to `@keyword.operator` - Highlights the `->` operator | ||||
| * | refactor(format): drop extra indentation for field | Phạm Huy Hoàng | 2024-03-21 | 1 | -7/+5 |
| | | |||||
| * | feat(vim): highlight keycodes | ObserverOfTime | 2024-01-24 | 1 | -0/+2 |
| | | |||||
| * | fix(highlights): improve member/property distinction | ObserverOfTime | 2024-01-19 | 1 | -1/+1 |
| | | |||||
| * | chore: query formatting | Pham Huy Hoang | 2024-01-19 | 1 | -91/+143 |
| | | |||||
| * | feat!: align standard captures with upstream | Christian Clason | 2024-01-19 | 1 | -11/+11 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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(vim): highlight 'scriptencoding' command | ObserverOfTime | 2023-12-09 | 1 | -0/+5 |
| | | |||||
| * | feat(vim): add the builtin `sign` command (#5322) | Kevin Svetlitski | 2023-08-27 | 1 | -0/+1 |
| | | |||||
| * | perf: remove match where possible | Amaan Qureshi | 2023-04-21 | 1 | -1/+1 |
| | | |||||
| * | 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. | ||||
| * | Update lockfile.json | GitHub | 2022-11-21 | 1 | -2/+15 |
| | | |||||
| * | highlights(vim): add some more keywords | ObserverOfTime | 2022-10-15 | 1 | -0/+6 |
| | | |||||
| * | feat(viml): update queries | Christian Clason | 2022-10-15 | 1 | -1/+12 |
| | | |||||
| * | feat(viml): bump parser and queries | Christian Clason | 2022-09-08 | 1 | -7/+11 |
| | | |||||
| * | feat(viml): update queries | Christian Clason | 2022-08-26 | 1 | -2/+15 |
| | | |||||
| * | chore(vim): update parser and highlights | Thomas Vigouroux | 2022-08-23 | 1 | -4/+2 |
| | | | | | | Adds support for map_bar. Correctly highlight unknown builtin commands. | ||||
| * | feat(vim): update to latest highlights | Thomas Vigouroux | 2022-08-23 | 1 | -0/+18 |
| | | |||||
| * | update vim parser and queries | Christian Clason | 2022-08-17 | 1 | -1/+5 |
| | | |||||
| * | Split func/method definition from calls in several programming language queries | lfenzo | 2022-08-03 | 1 | -1/+1 |
| | | |||||
| * | feat(vim): add support for const | Thomas Vigouroux | 2022-05-01 | 1 | -0/+1 |
| | | |||||
| * | feat(vim): highlight unknown commands | Thomas Vigouroux | 2022-04-16 | 1 | -1/+4 |
| | | |||||
| * | fix(vim): fix highlight for pattern | Pierrick Guillaume | 2022-02-19 | 1 | -2/+2 |
| | | | | | Allow pattern to not contain pattern_multi node to be highlighted | ||||
| * | add(vim): add highlight for more keywords | Pierrick Guillaume | 2022-02-08 | 1 | -1/+18 |
| | | |||||
| * | feat(vim): highlight default parameters | Zoltán Reegn | 2022-02-07 | 1 | -1/+2 |
| | | |||||
| * | feat(vim): highlight "higlight" variants | Thomas Vigouroux | 2022-01-24 | 1 | -0/+8 |
| | | |||||
| * | feat(vim): support syntax command | Thomas Vigouroux | 2022-01-24 | 1 | -1/+8 |
| | | |||||
| * | Prefer lua-match over match | Lewis Russell | 2021-11-23 | 1 | -1/+1 |
| | | | | | as string.find is much quicker than vim.regex:match* | ||||
| * | fix(vim): support syntax command and update parser | Thomas Vigouroux | 2021-10-01 | 1 | -0/+16 |
| | | |||||
| * | Vim: highlight setlocal (#1877) | Santos Gallegos | 2021-09-30 | 1 | -0/+1 |
| | | | | This was just added some days ago. | ||||
| * | Vim: update highlights and injections | Santos Gallegos | 2021-09-27 | 1 | -0/+9 |
| | | |||||
| * | feat(vim): highlight highlight_statement correctly | Thomas Vigouroux | 2021-08-26 | 1 | -4/+9 |
| | | | | | Fixes #1747 | ||||
| * | Viml: update queries | Santos Gallegos | 2021-08-23 | 1 | -4/+26 |
| | | |||||
| * | feat(vim): support augroups | Thomas Vigouroux | 2021-08-20 | 1 | -1/+5 |
| | | |||||
| * | fix(viml): update and support mappings | Thomas Vigouroux | 2021-08-20 | 1 | -0/+10 |
| | | |||||
| * | fix(vim): highlight more punctuation | Thomas Vigouroux | 2021-08-16 | 1 | -0/+14 |
| | | |||||
| * | feat: add support for vim | Thomas Vigouroux | 2021-08-16 | 1 | -0/+105 |
