mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 20:07:44 +03:00
add lsp for graphql (#8492)
graphql-lsp has quite the strange name upstream, the project is technically called graphql-language-service, but the binary shipped is called graphql-lsp hence the strange naming scheme Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
parent
96bbfb7c2e
commit
5cb76e74f9
2 changed files with 3 additions and 1 deletions
|
@ -59,7 +59,7 @@
|
||||||
| gomod | ✓ | | | `gopls` |
|
| gomod | ✓ | | | `gopls` |
|
||||||
| gotmpl | ✓ | | | `gopls` |
|
| gotmpl | ✓ | | | `gopls` |
|
||||||
| gowork | ✓ | | | `gopls` |
|
| gowork | ✓ | | | `gopls` |
|
||||||
| graphql | ✓ | | | |
|
| graphql | ✓ | | | `graphql-lsp` |
|
||||||
| hare | ✓ | | | |
|
| hare | ✓ | | | |
|
||||||
| haskell | ✓ | ✓ | | `haskell-language-server-wrapper` |
|
| haskell | ✓ | ✓ | | `haskell-language-server-wrapper` |
|
||||||
| haskell-persistent | ✓ | | | |
|
| haskell-persistent | ✓ | | | |
|
||||||
|
|
|
@ -30,6 +30,7 @@ forth-lsp = { command = "forth-lsp" }
|
||||||
fortls = { command = "fortls", args = ["--lowercase_intrinsics"] }
|
fortls = { command = "fortls", args = ["--lowercase_intrinsics"] }
|
||||||
fsharp-ls = { command = "fsautocomplete", config = { AutomaticWorkspaceInit = true } }
|
fsharp-ls = { command = "fsautocomplete", config = { AutomaticWorkspaceInit = true } }
|
||||||
gleam = { command = "gleam", args = ["lsp"] }
|
gleam = { command = "gleam", args = ["lsp"] }
|
||||||
|
graphql-language-service = { command = "graphql-lsp", args = ["server", "-m", "stream"] }
|
||||||
haskell-language-server = { command = "haskell-language-server-wrapper", args = ["--lsp"] }
|
haskell-language-server = { command = "haskell-language-server-wrapper", args = ["--lsp"] }
|
||||||
idris2-lsp = { command = "idris2-lsp" }
|
idris2-lsp = { command = "idris2-lsp" }
|
||||||
intelephense = { command = "intelephense", args = ["--stdio"] }
|
intelephense = { command = "intelephense", args = ["--stdio"] }
|
||||||
|
@ -1513,6 +1514,7 @@ scope = "source.graphql"
|
||||||
injection-regex = "graphql"
|
injection-regex = "graphql"
|
||||||
file-types = ["gql", "graphql", "graphqls"]
|
file-types = ["gql", "graphql", "graphqls"]
|
||||||
roots = []
|
roots = []
|
||||||
|
language-servers = [ "graphql-language-service" ]
|
||||||
indent = { tab-width = 2, unit = " " }
|
indent = { tab-width = 2, unit = " " }
|
||||||
|
|
||||||
[[grammar]]
|
[[grammar]]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue