summaryrefslogtreecommitdiff
path: root/queries
AgeCommit message (Collapse)Author
2022-02-07feat(highlights/julia): Add missing highlights (#2464)Sergio A. Vargas
- Add highlights for: + command strings + abstract type definitions + module `end` delimiters - Distinguish `:` in quotes and ranges (it's already highlighted differently in ternary expressions).
2022-02-07feat(vim): highlight default parametersZoltán Reegn
2022-02-06indents(lua): make ")" `@indent_endStephan Seitz
Fixes #2476
2022-02-06fix: Allow re-parsing in Python, XFAIL `\` indentation testStephan Seitz
2022-02-05indents(lua): use `(comment) @auto`Stephan Seitz
2022-02-05indens(c): use (comment) @autoStephan Seitz
2022-02-05indents(r): fix all R testsStephan Seitz
2022-02-05indents(go): perform some changes as go fmt dictatesStephan Seitz
2022-02-05indents(go): fix aligned_indent for parameter_listStephan Seitz
2022-02-05indents(go): remove `function_declaration` from indentsStephan Seitz
2022-02-05indents(php): add another testStephan Seitz
2022-02-05indent(lua): ignore commentStephan Seitz
2022-02-05indents(c): indent always after init_declaratorStephan Seitz
2022-02-05docs: add `@zero_indent` to CONTRIBUTING.mdStephan Seitz
2022-02-05indents(lua): fix comment indentationStephan Seitz
2022-02-05fix(indents): re-parse before each indentStephan Seitz
2022-02-05indents(c): add zero_indent for #ifStephan Seitz
2022-02-05indents(c): fix indentation on block commentStephan Seitz
2022-02-05indents(c): indent at expression_statementStephan Seitz
2022-02-05indents: allow aligned_indent for unfinished calls in C and PythonStephan Seitz
2022-02-05indents(cpp): indent at field_initializer_listStephan Seitz
2022-02-05indents(c): fix ternaryStephan Seitz
2022-02-05injections(yaml): inject at command list for Gitlab scriptStephan Seitz
2022-02-05injections(yaml): injection on Gitlab's before_script/after_scriptStephan Seitz
2022-02-05refactor(latex): improve queries (#2457)Christian Clason
2022-02-05Rename capturesUy Ha
2022-02-05Improve `set` queriesUy Ha
2022-02-04injections(latex): add support for minted language injectionStephan Seitz
2022-02-04fix(indent): lua - support `@indent_end` (#2454)Munif Tanjim
2022-02-04chore(latex)!: update parser and queries (#2436)Christian Clason
BREAKING CHANGE: queries for latex need adaptation
2022-02-03Updated TLA+ version, queries, maintainers (#2442)Andrew Helwer
2022-02-02verilog highlight: add some keywords, tidy keywords (#2432)Jade Lovelace
* Add a bunch of the OO keywords and some of the more unusual block delimiter types * Highlight macromodule like module is. * Highlight new as seen in constructor declarations like `class blah; function new(...); ... endfunction endclass` * Make endfunction a @keyword.function. This matches how lua does it. * Make tasks @keyword.function: tasks in SystemVerilog are more or less just impure functions * Highlight casex/casez like case is currently highlighted (previously these were not highlighted at all) * Highlight unique, unique0, priority for constructs like `unique case (...) ... endcase` and `priority if (...) ...`
2022-01-31Support HEEx slotsClay
2022-01-30highlights(d): highlight ":"Stephan Seitz
2022-01-30highlights(lua): don't highlight arguments as parametersStephan Seitz
2022-01-29highlights(vala): add "=" and ":" to highlightsStephan Seitz
2022-01-29Add brackets to Vala highlightsMateus B. Melchiades
2022-01-29Update Vala highlightsMateus B. Melchiades
2022-01-29Simplify vala highlights.scmMateus B. Melchiades
2022-01-29Vala language supportMateus Melchiades
2022-01-29indents(r): update @indent groupPedro Castro
2022-01-29indents(r): add indents supportPedro Castro
2022-01-29highlights(c/cpp): highlight case labels as constantsStephan Seitz
2022-01-29highlights(c): highlight enum variants as `@constant`Stephan Seitz
Fixes #2120
2022-01-29highlights(cpp): fix function highlighting of Foo::bar::baz()Stephan Seitz
Fixes https://github.com/nvim-treesitter/nvim-treesitter/issues/2396
2022-01-29supercollider: add support for constMads Kjeldgaard
2022-01-29supercollider: update indent query to match upstreamMads Kjeldgaard
2022-01-28folds(c): fold raw `compound_statement`sStephan Seitz
This will fold in particular around raw braces as reported in #2359 while avoiding to have double folds at functions+braces.
2022-01-28highlights(python): add support for pattern matchingStephan Seitz
Fixes #2080 Depends on https://github.com/tree-sitter/tree-sitter-python/pull/140
2022-01-28highlights(go): highlight `package_identifier` as `@namespace` (#2371)Stephan Seitz