Skip to content

Commit 33aefa6

Browse files
committed
feat: Add dosbatch support
1 parent 174ae2a commit 33aefa6

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ navigation and the ability to output variable values.
2121
* `cs` (C#)
2222
* `dart`
2323
* `dockerfile`
24+
* `dosbatch` (DOS/Windows Batch)
2425
* `fish`
2526
* `go`
2627
* `java`
@@ -287,6 +288,7 @@ If it helps to understand these, you can look at the built-in configurations in
287288
| CMake | :+1: | :+1: | :x: | :x: | :x: | :x: | :x: |
288289
| dart | :+1: | :x: | :x: | :x: | :x: | :x: | :x: |
289290
| Docker | :+1: | :+1: | :x: | :x: | :x: | :x: | :x: |
291+
| DOS/Windows Batch | :+1: | :x: | :x: | :x: | :x: | :x: | :x: |
290292
| fish | :+1: | :+1: | :x: | :x: | :x: | :x: | :x: |
291293
| Fortran | :x: | :+1: | :x: | :x: | :+1: | :x: | :x: |
292294
| Golang | :+1: | :+1: | :+1: | :+1: | :+1: | :x: | :+1: |

lua/debugprint/filetypes.lua

+6
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,12 @@ return {
6161
right_var = '}");',
6262
},
6363
["dockerfile"] = docker,
64+
["dosbatch"] = {
65+
left = 'echo "',
66+
right = '" 1>&2',
67+
mid_var = "%",
68+
right_var = '%" 1>&2',
69+
},
6470
["fish"] = {
6571
left = 'echo "',
6672
right = '" 1>&2',

0 commit comments

Comments
 (0)