Skip to content

Commit

Permalink
Add space after Kotlin keywords so that you can chain in keyword comm…
Browse files Browse the repository at this point in the history
…ands (talonhub#1429)

Co-authored-by: Nicholas Riley <com-github@sabi.net>
  • Loading branch information
jaresty and nriley authored Jun 2, 2024
1 parent 5ebcea7 commit 879ab2c
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions lang/kotlin/kotlin.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@

# Java Modifies
ctx.lists["user.code_keyword"] = {
"var": "var",
"val": "val",
"lateinit": "lateinit",
"public": "public",
"private": "private",
"protected": "protected",
"static": "static",
"synchronized": "synchronized",
"volatile": "volatile",
"transient": "transient",
"abstract": "abstract",
"interface": "interface",
"final": "final",
"var": "var ",
"val": "val ",
"lateinit": "lateinit ",
"public": "public ",
"private": "private ",
"protected": "protected ",
"static": "static ",
"synchronized": "synchronized ",
"volatile": "volatile ",
"transient": "transient ",
"abstract": "abstract ",
"interface": "interface ",
"final": "final ",
}


Expand Down

0 comments on commit 879ab2c

Please sign in to comment.