| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-06-19 | Help: update highlights | Santos Gallegos | |
| - A hotlink on vimdoc is `|foo|`. Which is a reference to part of a document, not a URI. - (argument) wasn't being highlighted, wasn't sure about the best hl group for this, but `@parameter` seems the obvious one? | |||
| 2022-06-19 | rnoweb: Use new inline/chunk distinction | Brian Albert Monroe | |
| 2022-06-19 | rnoweb: Add folding queries for renv | Brian Albert Monroe | |
| 2022-06-19 | Make rnoweb injects combined | Brian Albert Monroe | |
| This helps with breaking apart latex environments | |||
| 2022-06-19 | Add rnoweb queries | Brian Albert Monroe | |
| 2022-06-19 | feat(swift): update parser and queries to 0.3.0 (#3035) | Christian Clason | |
| also port upstream query changes | |||
| 2022-06-14 | fix(indents/yaml): only indent mapping pair if value is a block | Phelipe Teles | |
| This improves the following situation, in which '|' is the cursor position: ```yaml - key1: value1 key2: value2| ``` Before this commit, by pressing Enter would result in this indentation: ```yaml - key1: value1 key2: value2 | ``` Which is less convenient than this: ```yaml - key1: value1 key2: value2 | ``` | |||
| 2022-06-14 | fix(indents/yaml): improve error handling | Phelipe Teles | |
| This helps to solve the first issue reported at #1377. The problem is that the line loses its indentation when we start inserting a new mapping pair (specifically, when we enter the character ":"). The issue seems to be solved by auto indenting ERROR nodes. | |||
| 2022-06-14 | fix(indents/yaml): indent sequence/list items | Phelipe Teles | |
| This solves the second issue reported at #1377, in which the cursor would not be aligned with the line "key2: value2" when entering a new line below it. ```yaml - key1: value1 key2: value2 ``` | |||
| 2022-06-14 | fix: keep cls variable highlighting consistent in class methods | Ryan Barth | |
| 2022-06-14 | fix(tiger): remove duplicate keywords | Bruno BELANYI | |
| 2022-06-14 | fix(tiger): adjust invalid queries | Bruno BELANYI | |
| 2022-06-14 | feat(tiger): initial support | Bruno BELANYI | |
| 2022-06-07 | vim: add basic folding for if statements and functions (#2994) | Seth Barberee | |
| 2022-06-05 | injections(ecma): add injection for commented graphql template strings (#2987) | Jackson Ludwig | |
| 2022-06-04 | highlights(php): highlight readonly keyword | shirasaka | |
| 2022-06-01 | feat(highlights/julia): make operators visible | Sergio Alejandro Vargas | |
| See tree-sitter/tree-sitter-julia#34 | |||
| 2022-05-29 | highlights(c): highlight field_designator as `@property` | Stephan Seitz | |
| 2022-05-24 | fix(nix): update parser and queries | Minijackson | |
| 2022-05-21 | highlights(vlang): add `attribute_declaration` and specialize some keywords | Stephan Seitz | |
| 2022-05-21 | feat: highlight string_interpolation identifiers | tami5 | |
| functions call work without issues | |||
| 2022-05-21 | chore: add more builtin variables | tami5 | |
| 2022-05-21 | chore: add $else keyword | tami5 | |
| 2022-05-21 | chore(vlang): rename set! > #set! | tami5 | |
| 2022-05-21 | parser(vlang): fix location of remote repo | Stephan Seitz | |
| 2022-05-21 | feat(vlang): initial support | tami5 | |
| Add support for vlang filetypes. - [ ] Highlight `C` as builtin variable. This is FFI in vlang land, where C act like extern and access c functions. The vlang parser does some extension between C function calls and arguments but I believe highlighting C as builtin variable is sufficient indicator for now. I tried to use offset! but failed. Any suggestions? - [ ] Set up parser url. the vlang parser is located within [vls] repo. Is installing from nested repo supported? `tree_sitter_v/src/parser.c`? [vls]: https://github.com/vlang/vls/tree/master/tree_sitter_v cc @elianiva @theHamsta | |||
| 2022-05-21 | highlights(latex): only highlight command name, not whole command | Stephan Seitz | |
| 2022-05-21 | highlights(slint): highlight operators and more punctuation | Stephan Seitz | |
| 2022-05-15 | python(folds): fold whole functions not only body | Stephan Seitz | |
| 2022-05-15 | indents(php): @auto on comment and ERROR | przepompownia | |
| Currently with ```vim setlocal autoindent setlocal smartindent ``` in `after/indent/php.vim` it allows correct indentation inside PHP docblocks. | |||
| 2022-05-15 | highlights(cuda): add __grid_constant__ | Stephan Seitz | |
| 2022-05-14 | Use @definition.function for method & func definitions | William Mathewson | |
| 2022-05-14 | Add method to definitions in ECMA locals | William Mathewson | |
| In Telescope, function declarations were being exposed in the selector, but not method definitions which are also a form of function declaration. | |||
| 2022-05-14 | highlights(scheme): some fix (#2932) | 6cdh | |
| * Add block comment * Add λ highlight | |||
| 2022-05-13 | Python: highlight future import (#2936) | Santos Gallegos | |
| * Python: highlight future import * Use constant.builtin | |||
| 2022-05-13 | highlights(php): improve highlight for attributes | nsfisis | |
| 2022-05-07 | highlights(cpp): make "::" `@punctuation.delimiter` | Stephan Seitz | |
| Fixes #2902 | |||
| 2022-05-06 | highlights(ocaml): highlight units as such | Pau Ruiz Safont | |
| Units were shadowed by the punctuation highlights in all situations. Restrict the context where parentheses are highlighted as punctuation so () can be highlighted as constants. Signed-off-by: Pau Ruiz Safont <unduthegun@gmail.com> | |||
| 2022-05-05 | Add embedded template to support ERB files | Nick Pezza | |
| 2022-05-01 | feat(vim): add support for const | Thomas Vigouroux | |
| 2022-05-01 | Python: highlight raise from statement | Santos Gallegos | |
| 2022-04-28 | feat(proto): add parser | francisco souza | |
| Related to #2307. | |||
| 2022-04-27 | Add additional m68k queries | Graham Bates | |
| 2022-04-27 | Use correct type for labels | Graham Bates | |
| 2022-04-27 | Remove query for interpolated macro arg | Graham Bates | |
| No `embedded` mapping available in nvim-treesitter. The previous query to `variable.builtin` will work fine in this context too. | |||
| 2022-04-27 | feat: add m68k parser and queries | Graham Bates | |
| 2022-04-25 | indent(hcl): fix function calls | Michael Hoffmann | |
| 2022-04-24 | indents(hcl): fix indentation queries | Michael Hoffmann | |
| This commit adds tests for hcl indentation and fixes various bugs | |||
| 2022-04-23 | Fix YANG indentation for extension statements | Tomas Sandven | |
| 2022-04-23 | Add aligned indents for multi-line strings | Tomas Sandven | |
