mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 11:57:43 +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
|
@ -207,6 +207,8 @@ pub struct LanguageServerConfiguration {
|
|||
#[serde(default)]
|
||||
#[serde(skip_serializing_if = "Vec::is_empty")]
|
||||
pub args: Vec<String>,
|
||||
#[serde(default, skip_serializing_if = "HashMap::is_empty")]
|
||||
pub environment: HashMap<String, String>,
|
||||
#[serde(default = "default_timeout")]
|
||||
pub timeout: u64,
|
||||
pub language_id: Option<String>,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue