summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-07-28Merge pull request #237 from steelsojka/masterSteven Sojka
feat(parsers): add scheme parser
2020-07-28feat(parsers): add scheme parserSteven Sojka
2020-07-28Lua: update some queriesSantos Gallegos
- Basic textobjects - Highlighting punctuation symbols
2020-07-27Docs: format and fixesSantos Gallegos
Format the docs to be consisted and some typos.
2020-07-27C++: locals template_declaration must define their own scope in which the ↵Stephan Seitz
template arguments are valid
2020-07-27configs: attach on unknown parsers tooThomas Vigouroux
2020-07-27C/C++ locals: Make `field_identifier` a referenceStephan Seitz
2020-07-27Java locals: use has-ancestor? to match importsStephan Seitz
2020-07-27Java highlights/locals: Add catch_formal_parameterStephan Seitz
2020-07-27Java highlights: Add highlight for thisStephan Seitz
2020-07-27Add Java localsChinmay Dalal
Co-authored: @PitcherTear22
2020-07-27Predicates: remove function unlispify and use Lisp names directlyStephan Seitz
2020-07-27Add predicate: has-ancestor?Stephan Seitz
2020-07-27Add predicates moduleStephan Seitz
2020-07-27Parsers: add reStructuredTextSantos Gallegos
2020-07-26Dart highlights: add documentation_commentStephan Seitz
2020-07-26Dart highlighs: disable invalid nodes after parser update to fix CIStephan Seitz
2020-07-26Go locals: Make func_literal (lambda) a @scopeStephan Seitz
2020-07-26Go locals: use reference.kind for callsStephan Seitz
2020-07-24Go locals: range_clause can define variablesStephan Seitz
```go for _, num := range numbers { fmt.Print(num, " ") } ```
2020-07-23Rename attribute to annotationAkin Sowemimo
2020-07-23Remove todo commentAkin Sowemimo
2020-07-23Add attribute to the highlight mapAkin Sowemimo
2020-07-23Add myself as a maintainer for dartAkin Sowemimo
2020-07-23Add getter and setter signature highlightsAkin Sowemimo
2020-07-23Add some operators and match classes (with regex)Akin Sowemimo
2020-07-23Dart highlights: Add some basic queriesStephan Seitz
2020-07-23Fix #213: Add parser for dartStephan Seitz
2020-07-22add js textobject queriesSteven Sojka
2020-07-22Fix #198: prefer method highlighting over attributeStephan Seitz
2020-07-22Python highlights: add lambda parametersStephan Seitz
2020-07-22Merge pull request #209 from steelsojka/masterSteven Sojka
add rest_parameters as definition in javascript
2020-07-22add rest_parameters as definition in javascriptSteven Sojka
2020-07-22fixes golang method highlights (overwritten by parameter in the ordering)winwisely268
2020-07-21fix readme typoskiyan42
2020-07-20Fix #206: Use lsp.util.apply_text_edits for smart_renameStephan Seitz
2020-07-20Added some more fixes to c# highlightingSteve Vermeulen
2020-07-20Few more minor fixes to c# highlighting to cover other cases of types being usedSteve Vermeulen
2020-07-20Fixed to use @float instead of just @numberSteve Vermeulen
2020-07-20Commenting out the attempt to highlight method calls for nowSteve Vermeulen
2020-07-20Added myself as c# maintainerSteve Vermeulen
2020-07-20C# highlighting - Fixed to highlight method calls, and changed break to be ↵Steve Vermeulen
conditional instead of a repeat
2020-07-20Added more highlight groups to C# fileSteve Vermeulen
2020-07-20Added first attempt at highlighting and text objects for csharpSteve Vermeulen
2020-07-20C highlights: Add operator "%"Stephan Seitz
2020-07-20C++ locals: add variadic as @definition.varStephan Seitz
2020-07-20C++ highlights: Add decltype keywordStephan Seitz
2020-07-20C++ highlights: Highlight variadic parametersStephan Seitz
2020-07-20Fixed to use normal! instead of normalSteve Vermeulen
2020-07-20Python highlights: highlight functions with self as methods (#198)Stephan Seitz
Also highlight __init__/__new__ as constructor