mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
Avoid cloning configured env vars when starting a language server
The clone of the hashmap can be avoided by passing a ref instead. This commit also changes the `server_environment` type to match the bounds expected by `Command::envs` - this will avoid future refactoring if the underlying type changes (for example switching to `hashbrown::HashMap`).
This commit is contained in:
parent
e0da129727
commit
d031260180
2 changed files with 9 additions and 6 deletions
|
@ -16,11 +16,14 @@ use helix_stdx::path;
|
||||||
use parking_lot::Mutex;
|
use parking_lot::Mutex;
|
||||||
use serde::Deserialize;
|
use serde::Deserialize;
|
||||||
use serde_json::Value;
|
use serde_json::Value;
|
||||||
use std::sync::{
|
use std::{collections::HashMap, path::PathBuf};
|
||||||
|
use std::{
|
||||||
|
ffi::OsStr,
|
||||||
|
sync::{
|
||||||
atomic::{AtomicU64, Ordering},
|
atomic::{AtomicU64, Ordering},
|
||||||
Arc,
|
Arc,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
use std::{collections::HashMap, path::PathBuf};
|
|
||||||
use std::{future::Future, sync::OnceLock};
|
use std::{future::Future, sync::OnceLock};
|
||||||
use std::{path::Path, process::Stdio};
|
use std::{path::Path, process::Stdio};
|
||||||
use tokio::{
|
use tokio::{
|
||||||
|
@ -178,7 +181,7 @@ impl Client {
|
||||||
cmd: &str,
|
cmd: &str,
|
||||||
args: &[String],
|
args: &[String],
|
||||||
config: Option<Value>,
|
config: Option<Value>,
|
||||||
server_environment: HashMap<String, String>,
|
server_environment: impl IntoIterator<Item = (impl AsRef<OsStr>, impl AsRef<OsStr>)>,
|
||||||
root_path: PathBuf,
|
root_path: PathBuf,
|
||||||
root_uri: Option<lsp::Url>,
|
root_uri: Option<lsp::Url>,
|
||||||
id: LanguageServerId,
|
id: LanguageServerId,
|
||||||
|
|
|
@ -871,7 +871,7 @@ fn start_client(
|
||||||
&ls_config.command,
|
&ls_config.command,
|
||||||
&ls_config.args,
|
&ls_config.args,
|
||||||
ls_config.config.clone(),
|
ls_config.config.clone(),
|
||||||
ls_config.environment.clone(),
|
&ls_config.environment,
|
||||||
root_path,
|
root_path,
|
||||||
root_uri,
|
root_uri,
|
||||||
id,
|
id,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue