Skip to content

Commit 4e79853

Browse files
authored
feat(filetypes): add dart support
1 parent 146f2e3 commit 4e79853

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

lua/debugprint/filetypes.lua

+6
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ return {
2626
mid_var = '" << ',
2727
right_var = " << std::endl;",
2828
},
29+
["dart"] = {
30+
left = 'print("',
31+
right = '");',
32+
mid_var = '${',
33+
right_var = '}");'
34+
},
2935
["go"] = {
3036
left = 'fmt.Printf("',
3137
right = '")',

0 commit comments

Comments
 (0)