| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | feat(julia/highlights): Add `as` keyword | Sergio Alejandro Vargas | 2023-02-03 | 1 | -0/+2 |
| | | |||||
| * | julia: add `if_clause` (#4204) | Sergio A. Vargas | 2023-01-23 | 1 | -0/+2 |
| | | | | | | * fix(julia/highlights): Add `if_clause` * Update Julia lockfile revision | ||||
| * | julia: update parser and highlights (#4035) | Sergio A. Vargas | 2022-12-27 | 1 | -16/+25 |
| | | | | | | | | | | | | | - Update patterns for type definitions: The grammar was updated to parse `abstract type` and `primitive type` as a single token. - Update @symbol capture to highlight quoted operators as symbols. - Add pattern to highlight adjoint operator. - Update patterns and captures for: - "keyword" operators (in, isa, where) - type operators (<:, >:) - Parametrized types. | ||||
| * | julia: update parser and highlights (#4016) | Sergio A. Vargas | 2022-12-23 | 1 | -7/+3 |
| | | | | | - Replace `scoped_identifier` with `field_expression` in function names - Replace true and false with `boolean_literal` | ||||
| * | julia: update queries to parser change (#3956) | Sergio A. Vargas | 2022-12-14 | 3 | -20/+21 |
| | | |||||
| * | fix(julia): update queries to parser change | Christian Clason | 2022-12-03 | 2 | -5/+6 |
| | | |||||
| * | 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. | ||||
| * | injections(julia): add markdown | ObserverOfTime | 2022-11-27 | 1 | -3/+3 |
| | | |||||
| * | injections: add more regex injections | ObserverOfTime | 2022-11-27 | 1 | -0/+5 |
| | | |||||
| * | highlights(julia): use more specific groups | ObserverOfTime | 2022-11-26 | 1 | -7/+13 |
| | | |||||
| * | julia: update queries to parser change | Christian Clason | 2022-11-12 | 2 | -9/+2 |
| | | |||||
| * | fix: update julia queries to parser change | Christian Clason | 2022-11-06 | 3 | -3/+3 |
| | | |||||
| * | refactor julia locals | Sergio Alejandro Vargas | 2022-11-02 | 1 | -32/+56 |
| | | |||||
| * | refactor(highlights/julia): Update definitions | Sergio Alejandro Vargas | 2022-11-02 | 1 | -95/+134 |
| | | | | | | | | | | | | | | | | See https://github.com/tree-sitter/tree-sitter-julia/pull/54 Remove a bunch of patterns with `argument_list`. No longer necessary with `short_function_definition`. Other minor changes including: - Add boolean literals See https://github.com/tree-sitter/tree-sitter-julia/pull/44 - Update highlights for operators (for bindings, type operators, etc) - Update lockfile | ||||
| * | fix(julia): remove highlight query for constants | Fredrik Ekre | 2022-10-12 | 1 | -2/+0 |
| | | | | | | | | | | This patch removes the highlight query for constant identifiers based on capitalization. This led to inconsistent highlighting since e.g. `AA` would be a regular identifier, but `AAA` a constant. It is indeed true that some constants are uppercase only identifiers, but there are also constants which doesn't follow this pattern. Since there are no rules about this it seems better to not try to guess. | ||||
| * | Split func/method definition from calls in julia highlighting query | lfenzo | 2022-08-03 | 1 | -4/+4 |
| | | |||||
| * | highlights(julia): add "mutable" keyword | Stephan Seitz | 2022-07-16 | 1 | -0/+1 |
| | | |||||
| * | feat(highlights/julia): make operators visible | Sergio Alejandro Vargas | 2022-06-01 | 1 | -23/+13 |
| | | | | | See tree-sitter/tree-sitter-julia#34 | ||||
| * | highlights(julia): Update literals | Sergio Alejandro Vargas | 2022-04-16 | 1 | -25/+33 |
| | | | | | | | | | | | | Add queries for: - Character literals - Escape sequences - NaNs, Infs and missing Remove highlight to identifiers in coefficient expressions. Update other literals to match grammar. | ||||
| * | julia: update queries to parser changes | Christian Clason | 2022-04-15 | 3 | -12/+15 |
| | | |||||
| * | feat(highlights/julia): Add missing highlights (#2464) | Sergio A. Vargas | 2022-02-07 | 1 | -7/+13 |
| | | | | | | | | | | - Add highlights for: + command strings + abstract type definitions + module `end` delimiters - Distinguish `:` in quotes and ranges (it's already highlighted differently in ternary expressions). | ||||
| * | highlights(julia): add highlight for block comments | koalp | 2022-01-13 | 2 | -3/+9 |
| | | |||||
| * | Update queries | Santos Gallegos | 2021-12-22 | 1 | -6/+6 |
| | | | | | | - Don't use the old form for predicates - Update some invalid queries | ||||
| * | chore: fix typos | Dundar Göc | 2021-11-02 | 1 | -1/+1 |
| | | |||||
| * | Add exception handling branches | Sergio Alejandro Vargas | 2021-07-07 | 1 | -0/+2 |
| | | |||||
| * | Update Julia fold queries | Sergio Alejandro Vargas | 2021-07-07 | 1 | -9/+15 |
| | | |||||
| * | Add Julia indent queries | Sergio Alejandro Vargas | 2021-07-07 | 1 | -0/+40 |
| | | |||||
| * | feat(keywords) merge return and yield into keyword.return group | antonk52 | 2021-07-04 | 1 | -3/+1 |
| | | |||||
| * | feat(keywords) add keyword.return & keyword.yield | antonk52 | 2021-07-04 | 1 | -1/+4 |
| | | |||||
| * | Use #any-of? instead of #match? where posible | Joakker | 2021-06-25 | 1 | -1/+1 |
| | | |||||
| * | Improve check-queries (#1253) | Santos Gallegos | 2021-05-31 | 1 | -2/+3 |
| | | | | | | - Add checks for injections. - Allow queries that start with [A-Z] for highlights only. - Don't stop on the first error, finish checking all queries. | ||||
| * | Add Julia queries | Sergio Alejandro Vargas | 2021-05-16 | 1 | -0/+11 |
| | | |||||
| * | 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(julia): add "type"/"primitive" keyword | Stephan Seitz | 2021-04-23 | 1 | -0/+2 |
| | | |||||
| * | highlights(julia): add punctuation | Stephan Seitz | 2021-04-23 | 1 | -0/+2 |
| | | |||||
| * | fix(highlights): always highlight ternary operator as operator | Thomas Vigouroux | 2021-04-22 | 1 | -1/+1 |
| | | |||||
| * | Add comment parser to highlight comment tags (#893) | Santos Gallegos | 2021-03-12 | 1 | -0/+2 |
| | | | | Closes #236 | ||||
| * | Highlight Julia symbol expressions as TSSymbol | Dennis B | 2021-03-04 | 1 | -2/+1 |
| | | |||||
| * | Julia highlights: Add markdown injection for docstrings | Stephan Seitz | 2021-01-03 | 1 | -0/+2 |
| | | |||||
| * | Add Julia highlights (coauthor: @mroavi) | Stephan Seitz | 2021-01-03 | 2 | -0/+236 |
