aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* fix(git_config): highlight parent relative pathRiley Bruins2024-01-261-1/+1
|
* feat(python): allow comments before module docstringJongwook Choi2024-01-251-0/+2
| | | | | | | | | | | | | | | | | | | Example: ```python #!/usr/bin/env/python # some comment before module docstring # Copyright (c) LICENSE foo bar """module docstring.""" ``` Python indeed recognizes it: ``` $ python -c 'import testfile; print(testfile.__doc__)' module docstring. ```
* Fix find_usagesLeftas2024-01-251-0/+1
|
* fix(dart): replace slow indent with simpler strategyChristian Clason2024-01-251-5/+6
| | | | | | Pattern for dedenting else blocks is painfully slow (~20% of total test time), so replace with `@indent.auto` for the whole `if_statement` for now.
* Update parsers: cpp, csv, disassembly, elixir, kconfig, luau, matlab, php, ↵GitHub2024-01-251-12/+12
| | | | php_only, psv, tsv, wing
* fix: bump phpdoc parser and queryChristian Clason2024-01-252-4/+4
|
* fix(jsx): proper tag and builtin tag distinctionRiley Bruins2024-01-251-15/+15
|
* fix: format disassemblyAmaan Qureshi2024-01-251-4/+16
|
* feat: add tree-sitter-disassemblyColin Kennedy2024-01-245-0/+36
|
* feat(bash) Highlight concatenated words as stringsMiles Frain2024-01-251-0/+7
|
* chore(luau): update highlights and parserAmaan Qureshi2024-01-242-2/+16
|
* feat(vim): highlight keycodesObserverOfTime2024-01-241-0/+2
|
* feat(yuck): add missing injectionsObserverOfTime2024-01-242-10/+35
| | | | And builtin variable highlights
* fix(godot_resource): improve highlightsObserverOfTime2024-01-242-6/+26
| | | | And add a comment injection
* fix(highlights): clean up tag highlightsObserverOfTime2024-01-243-13/+10
|
* feat(latex): operator highlights for _ and ^Riley Bruins2024-01-241-0/+2
|
* fix(latex): better environment precedenceRiley Bruins2024-01-241-9/+9
|
* ci: bump cache to v4Christian Clason2024-01-242-2/+2
|
* chore(c_sharp): highlight tweaksAmaan Qureshi2024-01-241-0/+19
|
* chore(luadoc): update parser & highlightsAmaan Qureshi2024-01-242-5/+32
|
* chore(rust): update highlightsAmaan Qureshi2024-01-241-0/+5
|
* chore(python): update member lua patternAmaan Qureshi2024-01-241-2/+2
|
* fix(devicetree): Adapt to upstream node changes (#5961)Jędrzej Boczar2024-01-242-3/+3
|
* fix(rust): Follow upstream injectionsPhạm Huy Hoàng2024-01-241-1/+2
| | | | | | tree-sitter-rust and helix both have `injection.include-children` for the pattern in this PR. So it's best to changed to match the intended results
* feat(git_config): shell command alias injectionsRiley Bruins2024-01-231-0/+23
|
* Update parsers: c, html, luadoc, php, php_only, rust, swift, wingGitHub2024-01-231-8/+8
|
* fix(locals): index matches with split capture namesJames Trew2024-01-221-6/+6
|
* Update parsers: phpdoc, templ, wing, zathurarcGitHub2024-01-221-4/+4
|
* feat: add the zathurarc parser (#5948)wzy2024-01-215-0/+57
|
* fix(wgsl_bevy): Correct formatter mistakePhạm Huy Hoàng2024-01-221-1/+1
| | | | | | | Old version of `format-queries` incorrectly took away a space, creating a wrong capture. This is a fixup for that.
* chore: format queriesPhạm Huy Hoàng2024-01-2150-146/+143
|
* fix(format-scripts): remove parens if possiblePhạm Huy Hoàng2024-01-211-1/+26
|
* fix(jsdoc): add nospell to type and tag_nameSergey Slipchenko2024-01-211-2/+2
|
* docs(contributing): typos and examplesChristian Clason2024-01-211-9/+9
|
* feat(perl): add more highlightsVeesh Goldman2024-01-211-0/+3
|
* Update parsers: gleam, perl, templ, wingGitHub2024-01-211-4/+4
|
* fix(comments)!: consolidate note capturesChristian Clason2024-01-204-10/+9
| | | | | Distinguishing `hint` and `info` is too confusing; it's enough to have `error`, `warning`, `todo`, and `note`.
* feat: add the php_only parser included in tree-sitter-php (#5876)tk-shirasaka2024-01-2013-557/+574
| | | | | | | | Add parser `php_only` for PHP files without HTML embedded. Make queries for combined parser `php` inherit from `php_only` (no extensions needed). --------- Co-authored-by: shirasaka <tk.shirasaka@gmail>
* fix(highlights): use `markup.raw.delimiter` for fencesChristian Clason2024-01-203-6/+6
|
* feat: folds for git config filesPhạm Huy Hoàng2024-01-201-1/+2
|
* fix(markdown_inline): prioritize link URI (#5935)Riley Bruins2024-01-201-12/+12
|
* fix(rust): add `const_item` to foldsAmaan Qureshi2024-01-201-0/+1
|
* fix(rust): Add back 1 indent for macro rules (#5834)Pham Huy Hoang2024-01-201-0/+10
|
* feat(meson): add indents.scmJędrzej Boczar2024-01-2010-0/+172
|
* Fixup format (#5934)Phạm Huy Hoàng2024-01-2035-3/+47
| | | | | | | * fix(format): newline between top-level field defs * fixup: newline between node and comment * fixup: optimize pattern
* fix(markdown): remove @none from code fencesRiley Bruins2024-01-201-2/+0
|
* Update parsers: bashGitHub2024-01-201-1/+1
|
* feat(html): comment injectionsRiley Bruins2024-01-201-0/+2
|
* fix(python): add support for typed (kw)args (PEP 484) (#5875)Zeb Nicholls2024-01-191-4/+14
|
* Update parsers: printf, scalaGitHub2024-01-191-2/+2
|