diff options
author | Kirawi | 2022-01-16 01:11:31 +0000 |
---|---|---|
committer | GitHub | 2022-01-16 01:11:31 +0000 |
commit | a7b0cc730c9d18d214ef194ff0cb5d2ccfa8b762 (patch) | |
tree | 54282bcb538c709acbbb7080085cd6ef5a5fe99a | |
parent | 3a34036310d502fe99887c7f15f02784475d6dc5 (diff) |
Re-enable haskell in languages.toml (#1520)
-rw-r--r-- | book/src/generated/lang-support.md | 1 | ||||
-rw-r--r-- | languages.toml | 18 |
2 files changed, 10 insertions, 9 deletions
diff --git a/book/src/generated/lang-support.md b/book/src/generated/lang-support.md index 8b599f6b..87347819 100644 --- a/book/src/generated/lang-support.md +++ b/book/src/generated/lang-support.md @@ -17,6 +17,7 @@ | git-rebase | ✓ | | | | | glsl | ✓ | | ✓ | | | go | ✓ | ✓ | ✓ | `gopls` | +| haskell | ✓ | | | | | html | ✓ | | | | | java | ✓ | | | | | javascript | ✓ | | ✓ | `typescript-language-server` | diff --git a/languages.toml b/languages.toml index 78447578..e9d5af0e 100644 --- a/languages.toml +++ b/languages.toml @@ -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" |