Extract Haskell support into an extension (#9814)
This PR extracts Haskell support into an extension and removes the built-in Haskell support from Zed. I tested out the extension locally in a Nix shell using `nix-shell -p ghc haskell-language-server` to confirm the language server still operated as expected: <img width="341" alt="Screenshot 2024-03-26 at 11 26 26 AM" src="https://github.com/zed-industries/zed/assets/1486634/df16fd38-4046-4a45-ac9f-c2b85bffe5c0"> Release Notes: - Removed built-in support for Haskell, in favor of making it available as an extension. The Haskell extension will be suggested for download when you open a `.hs` file.
This commit is contained in:
parent
9d4c6c60fb
commit
1d6792b17d
15 changed files with 72 additions and 67 deletions
19
extensions/haskell/extension.toml
Normal file
19
extensions/haskell/extension.toml
Normal file
|
@ -0,0 +1,19 @@
|
|||
id = "haskell"
|
||||
name = "Haskell"
|
||||
description = "Haskell support for Zed"
|
||||
version = "0.0.1"
|
||||
schema_version = 1
|
||||
authors = [
|
||||
"Marshall Bowers <elliott.codes@gmail.com>",
|
||||
"Pseudomata <pseudomata@proton.me>",
|
||||
"Lei <45155667+leifu1128@users.noreply.github.com>"
|
||||
]
|
||||
repository = "https://github.com/zed-industries/zed"
|
||||
|
||||
[language_servers.hls]
|
||||
name = "Haskell Language Server"
|
||||
language = "Haskell"
|
||||
|
||||
[grammars.haskell]
|
||||
repository = "https://github.com/tree-sitter/tree-sitter-haskell"
|
||||
commit = "8a99848fc734f9c4ea523b3f2a07df133cbbcec2"
|
Loading…
Add table
Add a link
Reference in a new issue