use std::fs; use zed::lsp::CompletionKind; use zed::{CodeLabel, CodeLabelSpan, LanguageServerId}; use zed_extension_api::process::Command; use zed_extension_api::{self as zed, Result}; struct TestExtension { cached_binary_path: Option, } impl TestExtension { fn language_server_binary_path( &mut self, language_server_id: &LanguageServerId, _worktree: &zed::Worktree, ) -> Result { let (platform, arch) = zed::current_platform(); let current_dir = std::env::current_dir().unwrap(); println!("current_dir: {}", current_dir.display()); assert_eq!( current_dir.file_name().unwrap().to_str().unwrap(), "test-extension" ); fs::create_dir_all(current_dir.join("dir-created-with-abs-path")).unwrap(); fs::create_dir_all("./dir-created-with-rel-path").unwrap(); fs::write("file-created-with-rel-path", b"contents 1").unwrap(); fs::write( current_dir.join("file-created-with-abs-path"), b"contents 2", ) .unwrap(); assert_eq!( fs::read("file-created-with-rel-path").unwrap(), b"contents 1" ); assert_eq!( fs::read("file-created-with-abs-path").unwrap(), b"contents 2" ); let command = match platform { zed::Os::Linux | zed::Os::Mac => Command::new("echo"), zed::Os::Windows => Command::new("cmd").args(["/C", "echo"]), }; let output = command.arg("hello from a child process!").output()?; println!( "command output: {}", String::from_utf8_lossy(&output.stdout).trim() ); if let Some(path) = &self.cached_binary_path && fs::metadata(path).is_ok_and(|stat| stat.is_file()) { return Ok(path.clone()); } zed::set_language_server_installation_status( language_server_id, &zed::LanguageServerInstallationStatus::CheckingForUpdate, ); let release = zed::latest_github_release( "gleam-lang/gleam", zed::GithubReleaseOptions { require_assets: true, pre_release: false, }, )?; let ext = "tar.gz"; let download_type = zed::DownloadedFileType::GzipTar; // Do this if you want to actually run this extension - // the actual asset is a .zip. But the integration test is simpler // if every platform uses .tar.gz. // // ext = "zip"; // download_type = zed::DownloadedFileType::Zip; let asset_name = format!( "gleam-{version}-{arch}-{os}.{ext}", version = release.version, arch = match arch { zed::Architecture::Aarch64 => "aarch64", zed::Architecture::X86 => "x86", zed::Architecture::X8664 => "x86_64", }, os = match platform { zed::Os::Mac => "apple-darwin", zed::Os::Linux => "unknown-linux-musl", zed::Os::Windows => "pc-windows-msvc", }, ); let asset = release .assets .iter() .find(|asset| asset.name == asset_name) .ok_or_else(|| format!("no asset found matching {:?}", asset_name))?; let version_dir = format!("gleam-{}", release.version); let binary_path = format!("{version_dir}/gleam"); if !fs::metadata(&binary_path).is_ok_and(|stat| stat.is_file()) { zed::set_language_server_installation_status( language_server_id, &zed::LanguageServerInstallationStatus::Downloading, ); zed::download_file(&asset.download_url, &version_dir, download_type) .map_err(|e| format!("failed to download file: {e}"))?; zed::set_language_server_installation_status( language_server_id, &zed::LanguageServerInstallationStatus::None, ); let entries = fs::read_dir(".").map_err(|e| format!("failed to list working directory {e}"))?; for entry in entries { let entry = entry.map_err(|e| format!("failed to load directory entry {e}"))?; let filename = entry.file_name(); let filename = filename.to_str().unwrap(); if filename.starts_with("gleam-") && filename != version_dir { fs::remove_dir_all(entry.path()).ok(); } } } self.cached_binary_path = Some(binary_path.clone()); Ok(binary_path) } } impl zed::Extension for TestExtension { fn new() -> Self { Self { cached_binary_path: None, } } fn language_server_command( &mut self, language_server_id: &LanguageServerId, worktree: &zed::Worktree, ) -> Result { Ok(zed::Command { command: self.language_server_binary_path(language_server_id, worktree)?, args: vec!["lsp".to_string()], env: Default::default(), }) } fn label_for_completion( &self, _language_server_id: &LanguageServerId, completion: zed::lsp::Completion, ) -> Option { let name = &completion.label; let ty = strip_newlines_from_detail(&completion.detail?); let let_binding = "let a"; let colon = ": "; let assignment = " = "; let call = match completion.kind? { CompletionKind::Function | CompletionKind::Constructor => "()", _ => "", }; let code = format!("{let_binding}{colon}{ty}{assignment}{name}{call}"); Some(CodeLabel { spans: vec![ CodeLabelSpan::code_range({ let start = let_binding.len() + colon.len() + ty.len() + assignment.len(); start..start + name.len() }), CodeLabelSpan::code_range({ let start = let_binding.len(); start..start + colon.len() }), CodeLabelSpan::code_range({ let start = let_binding.len() + colon.len(); start..start + ty.len() }), ], filter_range: (0..name.len()).into(), code, }) } } zed::register_extension!(TestExtension); /// Removes newlines from the completion detail. /// /// The Gleam LSP can return types containing newlines, which causes formatting /// issues within the Zed completions menu. fn strip_newlines_from_detail(detail: &str) -> String { let without_newlines = detail .replace("->\n ", "-> ") .replace("\n ", "") .replace(",\n", ""); let comma_delimited_parts = without_newlines.split(','); comma_delimited_parts .map(|part| part.trim()) .collect::>() .join(", ") }