Skip to content

Commit

Permalink
Add .kts as an extension for Kotlin
Browse files Browse the repository at this point in the history
FIX: Include .kts as an extension for Kotlin.
  • Loading branch information
gingershaped authored Nov 10, 2023
1 parent 92d565b commit 44b58ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/language-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ export const languages = [
}),
LanguageDescription.of({
name: "Kotlin",
extensions: ["kt"],
extensions: ["kt", "kts"],
load() {
return import("@codemirror/legacy-modes/mode/clike").then(m => legacy(m.kotlin))
}
Expand Down

0 comments on commit 44b58ce

Please sign in to comment.