diff --git a/helix-lsp/src/client.rs b/helix-lsp/src/client.rs index 3a50f20aa..d63089973 100644 --- a/helix-lsp/src/client.rs +++ b/helix-lsp/src/client.rs @@ -16,11 +16,14 @@ use helix_stdx::path; use parking_lot::Mutex; use serde::Deserialize; use serde_json::Value; -use std::sync::{ - atomic::{AtomicU64, Ordering}, - Arc, -}; use std::{collections::HashMap, path::PathBuf}; +use std::{ + ffi::OsStr, + sync::{ + atomic::{AtomicU64, Ordering}, + Arc, + }, +}; use std::{future::Future, sync::OnceLock}; use std::{path::Path, process::Stdio}; use tokio::{ @@ -178,7 +181,7 @@ impl Client { cmd: &str, args: &[String], config: Option, - server_environment: HashMap, + server_environment: impl IntoIterator, impl AsRef)>, root_path: PathBuf, root_uri: Option, id: LanguageServerId, diff --git a/helix-lsp/src/lib.rs b/helix-lsp/src/lib.rs index 5eeea81c2..df57bbe8c 100644 --- a/helix-lsp/src/lib.rs +++ b/helix-lsp/src/lib.rs @@ -871,7 +871,7 @@ fn start_client( &ls_config.command, &ls_config.args, ls_config.config.clone(), - ls_config.environment.clone(), + &ls_config.environment, root_path, root_uri, id,