summaryrefslogtreecommitdiff
path: root/queries
AgeCommit message (Collapse)Author
2022-01-28highlights(r): highlight string_escape, change parameter priority and update ↵Pedro Castro
pipe
2022-01-25update TLA+ revision, add queries for PlusCal (#2344)Vasiliy Morkovkin
2022-01-25Add tree-sitter-eex parser for (L)EEx files (#2351)Clay
2022-01-24folds(c): fold at compound_statementCédric Barreteau
2022-01-24indents(php): align with C indentationStephan Seitz
Fixes https://github.com/nvim-treesitter/nvim-treesitter/issues/2357
2022-01-24feat(vim): highlight "higlight" variantsThomas Vigouroux
2022-01-24feat(vim): support syntax commandThomas Vigouroux
2022-01-24feat(indent): Implement basic indent for gdscript.Ryan Roden-Corrent
Indent is not handled correctly when adding new lines. It seems that functions/loops/etc. are not recognized until they have at least one indented block. For example, if you enter a newline after `func foo():`, the cursor will not be indented. If you manually indent and add a line like `pass`, e.g.: ``` func foo(): pass ``` now any insertions above or below `pass` will be indented correctly. This might be an issue with the grammar, as it seems to apply to highlights as well. The following will not be highligted ``` func foo(): ``` However, the following will be: ``` func foo(): pass ```
2022-01-24fix(phpdoc) Improve keyword queryMichael Härtl
2022-01-24Upgrade to HEEx parser 0.3.0Clay
2022-01-24Add new Elixir language injectionsClay
2022-01-24Fix highlights of module attributes and doc sigilsClay
2022-01-22highlights(r): change groups priorityPedro Castro
2022-01-21fix(indent): rust - support newline after closing braceMunif Tanjim
2022-01-21feat(indent): ecma - support common use-casesMunif Tanjim
2022-01-21fix(indent): c/cpp - support newline after closing braceMunif Tanjim
2022-01-21feat(indent): ecma - support try_catch and if_elseMunif Tanjim
2022-01-21feat(indent): support `@aligned_indent` for pythonMunif Tanjim
2022-01-21feat: rewrite indent moduleMunif Tanjim
2022-01-21feat: improve indent moduleMunif Tanjim
get_node_at_line should return appropriate child if available
2022-01-20parsers: add phpdoc parser (experimental)Michael Härtl
2022-01-20highlights(c): don't highlight type qualifiers in declarations as typesJohn Drouhard
2022-01-19fix(php) match magic and single letter constantsMichael Härtl
2022-01-18feat(lua)!: switch from our fork to MunifTanjim's (#2272)Christian Clason
also take queries from https://github.com/MunifTanjim/nvim-treesitter-lua/tree/main/queries/lua BREAKING CHANGE: queries are not compatible; modules will have to update
2022-01-18highlights(swift): add more `@operator`s and `implicit` keywordStephan Seitz
2022-01-18highlights(swift): highlight `"->"` as `@operator`Stephan Seitz
2022-01-18highlights(swift): highlight punctuationStephan Seitz
"?" is still missing: https://github.com/tree-sitter/tree-sitter-swift/issues/38
2022-01-18feat(java)(highlights): add missing highlights for `@type`captainko
2022-01-17highlights(php): detect constructor calls on instantiationMichael Härtl
2022-01-17highlights(cpp): add support for "<=>", "constinit", "consteval"Stephan Seitz
2022-01-17highlights(hack): add keywords implementsStephan Seitz
2022-01-17highlights(hack): extend queries add testsStephan Seitz
2022-01-17highlights(hack): add some basic highlightsStephan Seitz
Fixes #2041
2022-01-16locals(cpp): add support for conceptsStephan Seitz
2022-01-16highlights(cpp): add support for conceptsStephan Seitz
Requires https://github.com/tree-sitter/tree-sitter-cpp/pull/138
2022-01-16support PyFoam syntax in OpenFOAM filesElwardi
2022-01-16highlights(rust): add "yield" keywordStephan Seitz
2022-01-16add hoconantosha417
2022-01-16highlight(swift): add upstream queriesChristian Clason
2022-01-16highlights/injections/indents(java): comment -> line_comment,block_commentStephan Seitz
Ref https://github.com/tree-sitter/tree-sitter-java/pull/93
2022-01-16fix(php): change query for @constructor groupInfectos
2022-01-15highlights(php): fix and add missing highlightsMichael Härtl
2022-01-13highlights(haskell): function with type signatureAnanda Umamil
2022-01-13highlights(julia): add highlight for block commentskoalp
2022-01-13Add a missing LaTeX hightlight.Jendrik Stelzner
Add \eqref to the list of referencing commands.
2022-01-12highlights(vue): improve vue highlightsMichael Chris Lopez
- remove template_name and element and make more specific targeting
2022-01-12highlights(html_tags): more specific attribute_value targetMichael Chris Lopez
2022-01-12Add LaTeX highlights: addpart, addchap, addsec.Jendrik Stelzner
Add highlight for the LaTeX sectioning commands \addpart, \addchap, \addsec and their starred variants.
2022-01-11Add highlight for markdown delimitersMDeiml
2022-01-10Fix slow startup times for markdown grammarMDeiml