mathiasfrohlich / vscode-kotlin

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

print() highlighting not working #36

Closed wildlava closed 5 years ago

wildlava commented 5 years ago

The highlighting color of the "println" function works as expected, but the color of "print" does not (it stays white, e.g.). Here's what it looks like:

Screen Shot 2019-04-03 at 11 42 34
nishtahir commented 5 years ago

Good catch... I don't think this is listed as a built-in function in the grammar

wildlava commented 5 years ago

Yep, you are right! I did indeed find the problem in the builtin-functions section. I made the change (just added "print"), and that fixed it. Great! I just made a pull request...