aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* chore: rewrite healthcheck for compact outputkiyan2021-02-221-20/+12
|
* Ruby constants highlighted as TypeKassio Borges2021-02-221-5/+5
| | | | | | | In ruby constants and types are usually highlighted the sameway. Based on vim-ruby highlight. https://github.com/vim-ruby/vim-ruby/blob/master/syntax/ruby.vim#L502
* Fix indent sizeBonaBeavis2021-02-221-1/+1
|
* Add "v", "V", "<C-v>" as valid options of `selection_mode`.echasnovski2021-02-211-4/+5
|
* Add `selection_mode` argument to `ts_utils.update_selection()`.echasnovski2021-02-211-2/+12
|
* add formal_parameters elianiva2021-02-211-0/+1
| | | | | as suggested by p00f Co-authored-by: Chinmay Dalal <chinmay.dalal.22012001@gmail.com>
* feat: add java indentelianiva2021-02-211-0/+19
|
* highlights(java): Highlight spread parametersStephan Seitz2021-02-191-1/+5
|
* highlights(java): fix constant highlighting (only UPPERCASE_LETTERS)Stephan Seitz2021-02-191-1/+1
|
* [docgen] Update README.mdGithub Actions2021-02-191-1/+2
| | | | skip-checks: true
* List myself as the Vue maintainerHugo Osvaldo Barrera2021-02-171-1/+2
|
* Add support for folding Vue filesHugo Osvaldo Barrera2021-02-171-0/+6
|
* Add support for Vue filesHugo Osvaldo Barrera2021-02-172-0/+57
| | | | | I haven't included parsing the `style` tag, since the only applicable queries we have are CSS (which actually works fine for SCSS too).
* List myself as maintainer for JSONCHugo Osvaldo Barrera2021-02-171-0/+1
|
* Add README description for JSONCHugo Osvaldo Barrera2021-02-171-1/+2
|
* Add support for JSONCHugo Osvaldo Barrera2021-02-155-0/+13
|
* highlights(rst): Reset highlights in doctest_blockStephan Seitz2021-02-151-0/+4
|
* Json: update foldsSantos Gallegos2021-02-131-0/+1
| | | | Allow to fold mappings.
* C: downgrade parserSantos Gallegos2021-02-121-1/+1
| | | | | | | | | Till we figure out what's happening. Ref: - https://github.com/tree-sitter/tree-sitter-c/commits/master - https://github.com/nvim-treesitter/nvim-treesitter/issues/948
* Update lockfile.jsonGitHub2021-02-121-2/+2
|
* highlights(nix): fix for alias name of identifier in attrpathStephan Seitz2021-02-121-3/+3
|
* Fix parser config for nixStephan Seitz2021-02-121-1/+1
|
* Update lockfile.jsonGitHub2021-02-121-6/+12
|
* Query: highlight modelineSantos Gallegos2021-02-121-0/+3
| | | | | Matches the first comment and the beginning from the pattern https://github.com/neovim/neovim/blob/52397aaa0d1e2d4ce1320c73761cf316fc608ffb/runtime/lua/vim/treesitter/query.lua#L25
* fix: remove debug print on query cache invalidationStephan Seitz2021-02-111-1/+0
| | | | | | The message does not even provide any context where it's coming from and what it is exactly doing and has to be acknowledged when printed in conjunction with the "wrote xxx bytes message"
* Bump ledger versionCédric Barreteau2021-02-111-1/+1
| | | | Adds support for multi-word commodities.
* feat(javascript): add template string language injectionSteven Sojka2021-02-111-3/+9
|
* Use eq?Santos Gallegos2021-02-112-4/+4
|
* HTML: improve highlights & injectionsSantos Gallegos2021-02-116-1/+39
|
* [docgen] Update README.mdGithub Actions2021-02-111-0/+1
| | | | skip-checks: true
* Query: add foldsSantos Gallegos2021-02-111-0/+6
|
* C/CPP: add injections for macrosSantos Gallegos2021-02-102-0/+2
|
* YAML: add localsSantos Gallegos2021-02-101-0/+1
| | | | This is so incremental selection works
* CleanupMads Kjeldgaard2021-02-101-7/+0
|
* CleanupMads Kjeldgaard2021-02-101-7/+0
|
* Update queries/supercollider/locals.scmmads kjeldgaard2021-02-101-2/+0
| | | Co-authored-by: Thomas Vigouroux <tomvig38@gmail.com>
* Update queries/supercollider/highlights.scmmads kjeldgaard2021-02-101-1/+0
| | | Co-authored-by: Thomas Vigouroux <tomvig38@gmail.com>
* KeywordMads Kjeldgaard2021-02-101-1/+1
|
* remove @escapeMads Kjeldgaard2021-02-101-1/+1
|
* Remove second addition of supercolliderMads Kjeldgaard2021-02-101-9/+0
|
* Add supercollider supportMads Kjeldgaard2021-02-105-0/+169
|
* Add supercollider parser to list of parsersMads Kjeldgaard2021-02-101-0/+18
|
* Add devicetree parser with queries (#900)Jędrzej Boczar2021-02-106-0/+65
| | | | | | | | | | | | | | | | | | | | | * Add devicetree parser with queries * [docgen] Update README.md skip-checks: true * queries/devicetree: update highlight capture groups * minor fix in CONTRIBUTING.md * Revert "minor fix in CONTRIBUTING.md" This reverts commit 23622b49dbb9eace471e036c0f94fc64b5fda951. * queries/devicetree: add self as maintainer * [docgen] Update README.md skip-checks: true Co-authored-by: Github Actions <actions@github>
* Lua: highlight fieldsSantos Gallegos2021-02-101-0/+1
|
* fix: rust use_list + tuple_expression indentelianiva2021-02-081-0/+2
|
* Update lockfile.jsonGitHub2021-02-071-1/+1
|
* Yaml: fix foldsSantos Gallegos2021-02-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Fix https://github.com/nvim-treesitter/nvim-treesitter/issues/887 (block_node) includes more nodes to fold, test with: ```yaml days: Monday: - test: example Tuesday: - test: example Wednesday: - test: example - test: example Thursday: - test: example Friday: - test: example - foo: | One Two Three ```
* Query: add regex injectionsSantos Gallegos2021-02-071-0/+4
|
* Lua: improve scope queriesSantos Gallegos2021-02-071-12/+12
| | | | | | - Set scope to parent - Group all scopes - Use the . operator
* HTML: add folds queriesSantos Gallegos2021-02-071-0/+5
|