From a7b0cc730c9d18d214ef194ff0cb5d2ccfa8b762 Mon Sep 17 00:00:00 2001 From: Kirawi <67773714+kirawi@users.noreply.github.com> Date: Sat, 15 Jan 2022 20:11:31 -0500 Subject: [PATCH] Re-enable haskell in languages.toml (#1520) --- book/src/generated/lang-support.md | 1 + 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"