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
2 people authored and MartinRykfors committed Aug 14, 2024
1 parent 914546e commit 8b44a0c
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 8b44a0c

Please sign in to comment.