mathiasfrohlich / vscode-kotlin

Kotlin language support for VS Code
Apache License 2.0
201 stars 21 forks source link

'qualified this' (this@Activity) is not correctly highlighted #35

Open valen214 opened 5 years ago

valen214 commented 5 years ago
this@Activity.setContentView(R.a.b)
//            ^ these are also highlighted as keywords

poposed solution: changing '/syntaxes/Kotlin.tmLanguage': line 624: from

line 624:            <string>\b(this|super)\b</string>

to

line 624:            <string>\b(this|super)(@\w+)?\b</string>