Skip to content

Commit 37cba86

Browse files
committed
feat: Add fish support
1 parent 0b91a83 commit 37cba86

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
@@ -18,6 +18,7 @@ navigation and the ability to output variable values.
1818
* `cs` (C#)
1919
* `dart`
2020
* `dockerfile`
21+
* `fish`
2122
* `go`
2223
* `java`
2324
* `javascript`
@@ -282,7 +283,7 @@ If it helps to understand these, you can look at the built-in configurations in
282283
| CMake | :x: | :+1: | :x: | :x: | :x: | :x: | :x: |
283284
| dart | :+1: | :x: | :x: | :x: | :x: | :x: | :x: |
284285
| Docker | :+1: | :+1: | :x: | :x: | :x: | :x: | :x: |
285-
| fish | :x: | :+1: | :x: | :x: | :x: | :x: | :x: |
286+
| fish | :+1: | :+1: | :x: | :x: | :x: | :x: | :x: |
286287
| Fortran | :x: | :+1: | :x: | :x: | :+1: | :x: | :x: |
287288
| Golang | :+1: | :+1: | :+1: | :+1: | :+1: | :x: | :+1: |
288289
| Haskell | :x: | :+1: | :x: | :x: | :x: | :x: | :x: |

lua/debugprint/filetypes.lua

+6
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,12 @@ return {
5454
right_var = '}");',
5555
},
5656
["dockerfile"] = docker,
57+
["fish"] = {
58+
left = 'echo "',
59+
right = '" 1>&2',
60+
mid_var = "$",
61+
right_var = '" 1>&2',
62+
},
5763
["go"] = {
5864
left = 'fmt.Fprintf(os.Stderr, "',
5965
right = '\\n")',

0 commit comments

Comments
 (0)