Skip to content

Commit d8bc418

Browse files
committed
feat: Add Haskell support
1 parent 63a28d1 commit d8bc418

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ navigation and the ability to output variable values.
2525
* `fish`
2626
* `fortran`
2727
* `go`
28+
* `haskell`
2829
* `java`
2930
* `javascript`
3031
* `lean`
@@ -309,7 +310,7 @@ If it helps to understand these, you can look at the built-in configurations in
309310
| fish | :+1: | :+1: | :x: | :x: | :x: | :x: | :x: |
310311
| Fortran | :+1: | :+1: | :x: | :x: | :+1: | :x: | :x: |
311312
| Golang | :+1: | :+1: | :+1: | :+1: | :+1: | :x: | :+1: |
312-
| Haskell | :x: | :+1: | :x: | :x: | :x: | :x: | :x: |
313+
| Haskell | :+1: | :+1: | :x: | :x: | :x: | :x: | :x: |
313314
| Java | :+1: | :+1: | :+1: | :+1: | :+1: | :x: | :x: |
314315
| Javascript/Typescript | :+1: | :+1: | :+1: | :+1: | :+1: | :x: | :+1: |
315316
| Kotlin | :+1: | :x: | :x: | :x: | :x: | :x: | :x: |

lua/debugprint/filetypes.lua

+6
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,12 @@ return {
8585
mid_var = '%+v\\n", ',
8686
right_var = ")",
8787
},
88+
["haskell"] = {
89+
left = 'putStrLn "',
90+
right = '"',
91+
mid_var = '" ++ ',
92+
right_var = "",
93+
},
8894
["java"] = {
8995
left = 'System.err.println("',
9096
right = '");',

0 commit comments

Comments
 (0)