Skip to content

Commit

Permalink
fix: Loading json textmate file when kotlin file opened
Browse files Browse the repository at this point in the history
  • Loading branch information
CyberGlitch01 committed Sep 12, 2023
1 parent 4d7517e commit e32aa92
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ public static String getLanguageModeForExtension(String ext) {
return Language.JavaScript;
} else if (ext.equals("md")) {
return Language.Markdown;
} else if (ext.equals("kt")) {
return Language.Kt;
} else {
return Language.JSON;
}
Expand Down

0 comments on commit e32aa92

Please sign in to comment.