Remove built-in Nu support in favor of extension (#10570)

Release Notes:

- Removed built-in Nu language support in favor of an extension.

---------

Co-authored-by: Marshall <marshall@zed.dev>
This commit is contained in:
Max Brunsfeld 2024-04-15 10:47:01 -07:00 committed by GitHub
parent 5037f466f6
commit 015e2ecd19
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 1 additions and 368 deletions

View file

@ -22,7 +22,6 @@ mod deno;
mod elixir;
mod go;
mod json;
mod nu;
mod python;
mod ruby;
mod rust;
@ -69,7 +68,6 @@ pub fn init(
("jsdoc", tree_sitter_jsdoc::language()),
("json", tree_sitter_json::language()),
("markdown", tree_sitter_markdown::language()),
("nu", tree_sitter_nu::language()),
("proto", tree_sitter_proto::language()),
("python", tree_sitter_python::language()),
("regex", tree_sitter_regex::language()),
@ -272,7 +270,6 @@ pub fn init(
"yaml",
vec![Arc::new(yaml::YamlLspAdapter::new(node_runtime.clone()))]
);
language!("nu", vec![Arc::new(nu::NuLanguageServer {})]);
language!("proto");
languages.register_secondary_lsp_adapter(