Skip to content

Commit 0676e6d

Browse files
committed
feat: Add Kotlin support
1 parent 7d12f70 commit 0676e6d

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,7 @@ If it helps to understand these, you can look at the built-in configurations in
296296
| Haskell | :x: | :+1: | :x: | :x: | :x: | :x: | :x: |
297297
| Java | :+1: | :+1: | :+1: | :+1: | :+1: | :x: | :x: |
298298
| Javascript/Typescript | :+1: | :+1: | :+1: | :+1: | :+1: | :x: | :+1: |
299+
| Kotlin | :+1: | :x: | :x: | :x: | :x: | :x: | :x: |
299300
| lua | :+1: | :+1: | :+1: | :+1: | :+1: | :x: | :+1: |
300301
| GNU Make | :+1: | :+1: | :x: | :x: | :x: | :x: | :x: |
301302
| Perl | :x: | :x: | :x: | :x: | :x: | :x: | :x: |

lua/debugprint/filetypes.lua

+6
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,12 @@ return {
6868
},
6969
["javascript"] = js,
7070
["javascriptreact"] = js,
71+
["kotlin"] = {
72+
left = 'println("',
73+
right = '")',
74+
mid_var = "$",
75+
right_var = '")',
76+
},
7177
["lua"] = {
7278
left = "print('",
7379
right = "')",

0 commit comments

Comments
 (0)