mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
add LSP for nushell (#8878)
This commit is contained in:
parent
db83eb0c50
commit
f1b9c19fa9
2 changed files with 3 additions and 1 deletions
|
@ -105,7 +105,7 @@
|
||||||
| nickel | ✓ | | ✓ | `nls` |
|
| nickel | ✓ | | ✓ | `nls` |
|
||||||
| nim | ✓ | ✓ | ✓ | `nimlangserver` |
|
| nim | ✓ | ✓ | ✓ | `nimlangserver` |
|
||||||
| nix | ✓ | | | `nil` |
|
| nix | ✓ | | | `nil` |
|
||||||
| nu | ✓ | | | |
|
| nu | ✓ | | | `nu` |
|
||||||
| nunjucks | ✓ | | | |
|
| nunjucks | ✓ | | | |
|
||||||
| ocaml | ✓ | | ✓ | `ocamllsp` |
|
| ocaml | ✓ | | ✓ | `ocamllsp` |
|
||||||
| ocaml-interface | ✓ | | | `ocamllsp` |
|
| ocaml-interface | ✓ | | | `ocamllsp` |
|
||||||
|
|
|
@ -47,6 +47,7 @@ mint = { command = "mint", args = ["ls"] }
|
||||||
nil = { command = "nil" }
|
nil = { command = "nil" }
|
||||||
nimlangserver = { command = "nimlangserver" }
|
nimlangserver = { command = "nimlangserver" }
|
||||||
nls = { command = "nls" }
|
nls = { command = "nls" }
|
||||||
|
nu-lsp = { command = "nu", args = [ "--lsp" ] }
|
||||||
ocamllsp = { command = "ocamllsp" }
|
ocamllsp = { command = "ocamllsp" }
|
||||||
ols = { command = "ols", args = [] }
|
ols = { command = "ols", args = [] }
|
||||||
omnisharp = { command = "OmniSharp", args = [ "--languageserver" ] }
|
omnisharp = { command = "OmniSharp", args = [ "--languageserver" ] }
|
||||||
|
@ -1783,6 +1784,7 @@ file-types = ["nu"]
|
||||||
shebangs = ["nu"]
|
shebangs = ["nu"]
|
||||||
comment-token = "#"
|
comment-token = "#"
|
||||||
indent = { tab-width = 2, unit = " " }
|
indent = { tab-width = 2, unit = " " }
|
||||||
|
language-servers = [ "nu-lsp" ]
|
||||||
|
|
||||||
[[grammar]]
|
[[grammar]]
|
||||||
name = "nu"
|
name = "nu"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue