Re-enable haskell in languages.toml (#1520)

This commit is contained in:
Kirawi 2022-01-15 20:11:31 -05:00 committed by GitHub
parent 3a34036310
commit a7b0cc730c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 9 deletions

View File

@ -17,6 +17,7 @@
| git-rebase | ✓ | | | |
| glsl | ✓ | | ✓ | |
| go | ✓ | ✓ | ✓ | `gopls` |
| haskell | ✓ | | | |
| html | ✓ | | | |
| java | ✓ | | | |
| javascript | ✓ | | ✓ | `typescript-language-server` |

View File

@ -337,15 +337,15 @@ comment-token = "#"
indent = { tab-width = 2, unit = " " }
injection-regex = "yml|yaml"
# [[language]]
# name = "haskell"
# scope = "source.haskell"
# injection-regex = "haskell"
# file-types = ["hs"]
# roots = []
# comment-token = "--"
#
# indent = { tab-width = 2, unit = " " }
[[language]]
name = "haskell"
scope = "source.haskell"
injection-regex = "haskell"
file-types = ["hs"]
roots = []
comment-token = "--"
indent = { tab-width = 2, unit = " " }
[[language]]
name = "zig"