mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 03:17:45 +03:00
allow specifying environment for language servers in language.toml (#4004)
Signed-off-by: Stephen Wakely <fungus.humungus@gmail.com> Co-authored-by: Stephen Wakely <fungus.humungus@gmail.com> Co-authored-by: Blaž Hrastnik <blaz@mxxn.io>
This commit is contained in:
parent
2ea20a23e2
commit
16e13b9789
4 changed files with 8 additions and 1 deletions
|
@ -42,10 +42,12 @@ pub struct Client {
|
|||
|
||||
impl Client {
|
||||
#[allow(clippy::type_complexity)]
|
||||
#[allow(clippy::too_many_arguments)]
|
||||
pub fn start(
|
||||
cmd: &str,
|
||||
args: &[String],
|
||||
config: Option<Value>,
|
||||
server_environment: HashMap<String, String>,
|
||||
root_markers: &[String],
|
||||
id: usize,
|
||||
req_timeout: u64,
|
||||
|
@ -55,6 +57,7 @@ impl Client {
|
|||
let cmd = which::which(cmd).map_err(|err| anyhow::anyhow!(err))?;
|
||||
|
||||
let process = Command::new(cmd)
|
||||
.envs(server_environment)
|
||||
.args(args)
|
||||
.stdin(Stdio::piped())
|
||||
.stdout(Stdio::piped())
|
||||
|
|
|
@ -550,6 +550,7 @@ fn start_client(
|
|||
&ls_config.command,
|
||||
&ls_config.args,
|
||||
config.config.clone(),
|
||||
ls_config.environment.clone(),
|
||||
&config.roots,
|
||||
id,
|
||||
ls_config.timeout,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue