summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-06-15Add punctuation.bracket/punctuation.delimiter to C highlightsStephan Seitz
2020-06-15Make =,~,! operators in C highlightsStephan Seitz
2020-06-15Add cpp/locals.scmStephan Seitz
2020-06-15Add @error highlight to c/highlights.scmStephan Seitz
2020-06-15Add C++ highlights.scmStephan Seitz
2020-06-15Introduce base languages for queriesStephan Seitz
Some treesitter grammars just extend another treesitter grammar. This enables us to use the C queries also for C++. We only need to put additional queries in the C++ files.
2020-06-15Merge pull request #80 from steelsojka/feat/user-query-overridesKiyan Yazdani
feat(queries): allow user query overrides
2020-06-14feat(queries): add typescript and javascript queriesSteven Sojka
2020-06-14Merge pull request #70 from theHamsta/regexThomas Vigouroux
Add tree-sitter-regex
2020-06-14Add tree-sitter-regexStephan Seitz
This might be interesting for injected highlighting
2020-06-14feat(queries): allow for user overridesSteven Sojka
2020-06-14Update issue templatesThomas Vigouroux
Add some issue templates
2020-06-12Merge pull request #77 from TravonteD/76-syntax-updateThomas Vigouroux
- #76 update the predicate syntax for ruby and css
2020-06-11Add highlights.scm and locals.scmChinmay
2020-06-11- #76 update the predicate syntax for ruby and cssTravonteD
2020-06-07Merge pull request #69 from theHamsta/go-highlightsThomas Vigouroux
Go highlights
2020-06-07Update CONTRIBUTING.md for @docStephan Seitz
2020-06-07Add call references for GoStephan Seitz
2020-06-07Add go locals.scmStephan Seitz
2020-06-07Add highlights.scm for GoStephan Seitz
2020-06-05Merge pull request #75 from theHamsta/html-quoted_attribute_valueKiyan Yazdani
html: Highlight (quoted_attribute_value) as @string
2020-06-05html: Highlight (quoted_attribute_value) as @stringStephan Seitz
2020-06-02Merge pull request #68 from TravonteD/htmlThomas Vigouroux
Add html highlight queries
2020-06-02Merge pull request #67 from TravonteD/cssThomas Vigouroux
Add css highlight queries
2020-06-02Add html highlight queriesTravonteD
2020-06-02Add css highlight queriesTravonteD
2020-06-02Merge pull request #73 from theHamsta/python-localsThomas Vigouroux
Update python locals: `list_splat` and `dictionary_splat` define vari…
2020-06-02Update python locals: `list_splat` and `dictionary_splat` define variables ↵Stephan Seitz
as parameters
2020-06-02Merge pull request #71 from stsewd/fix-examppleKiyan Yazdani
Fix example mappings
2020-06-01Fix example mappingsSantos Gallegos
2020-06-01Merge pull request #66 from theHamsta/python-kw-highlightThomas Vigouroux
Improve Python highlights
2020-05-28Improve Python highlightsStephan Seitz
- Highlight types in attributes as @type (**Foo**.a) - Highlight superclasses @type - Highlight ^[A-Z] as @type - Highlight isinstance(*, type) as @type - Highlight default_parameter and keyword_argument as @parameter - Highlight *args, **kwargs as @parameter - Highlight -> as @operator
2020-05-26Merge pull request #65 from theHamsta/typo-foldexprKiyan Yazdani
Fix typo in README.md: foldexr -> foldexpr
2020-05-26Fix typo in README.md: foldexr -> foldexprStephan Seitz
2020-05-25Merge pull request #64 from vigoux/feature/foldingKiyan Yazdani
Treesitter based code folding.
2020-05-25docs: document foldingThomas Vigouroux
2020-05-25feat: add syntax-based foldingThomas Vigouroux
2020-05-24Merge pull request #62 from theHamsta/c-localsThomas Vigouroux
Some improvements to c/locals.scm
2020-05-23Some improvements to c/locals.scmStephan Seitz
- Fix function scope (was declaration only without body) - Use @definition.var like the other local files - Add translation_unit scope
2020-05-23Merge pull request #56 from theHamsta/python-localsThomas Vigouroux
Add python locals.scm
2020-05-22Merge pull request #61 from theHamsta/cleanup-postspaceKiyan Yazdani
Remove postspaces and avoid one global
2020-05-22Remove postspaces and avoid one globalStephan Seitz
2020-05-19Merge pull request #60 from klauer/doc_missing_eofKiyan Yazdani
docs: missing EOF for init.vim
2020-05-19docs: missing EOF for init.vimK Lauer
2020-05-17Introduce `@include`Stephan Seitz
2020-05-17Add python/highlights.scm from tree-sitter-pythonStephan Seitz
2020-05-16Add python locals.scmStephan Seitz
2020-05-16Merge pull request #53 from vigoux/c-queriesKiyan Yazdani
Add C queries
2020-05-16docs: update READMEThomas Vigouroux
2020-05-16queries: add C queriesThomas Vigouroux
Also add a missing `field` capture in locals query.