mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
Defaults in completions, better schema
This commit is contained in:
parent
f53d8411cb
commit
b42631942b
7 changed files with 88 additions and 58 deletions
|
@ -38,28 +38,24 @@ pub struct Client {
|
|||
impl Client {
|
||||
// Spawn a process and communicate with it by either TCP or stdio
|
||||
pub async fn process(
|
||||
cfg: DebugAdapterConfig,
|
||||
transport: String,
|
||||
command: String,
|
||||
args: Vec<String>,
|
||||
port_arg: Option<String>,
|
||||
id: usize,
|
||||
) -> Result<(Self, UnboundedReceiver<Payload>)> {
|
||||
if cfg.transport == "tcp" && cfg.port_arg.is_some() {
|
||||
if transport == "tcp" && port_arg.is_some() {
|
||||
Self::tcp_process(
|
||||
&cfg.command,
|
||||
cfg.args.iter().map(|s| s.as_str()).collect(),
|
||||
&cfg.port_arg.unwrap(),
|
||||
&command,
|
||||
args.iter().map(|s| s.as_str()).collect(),
|
||||
&port_arg.unwrap(),
|
||||
id,
|
||||
)
|
||||
.await
|
||||
} else if cfg.transport == "stdio" {
|
||||
Self::stdio(
|
||||
&cfg.command,
|
||||
cfg.args.iter().map(|s| s.as_str()).collect(),
|
||||
id,
|
||||
)
|
||||
} else if transport == "stdio" {
|
||||
Self::stdio(&command, args.iter().map(|s| s.as_str()).collect(), id)
|
||||
} else {
|
||||
Result::Err(Error::Other(anyhow!(
|
||||
"Incorrect transport {}",
|
||||
cfg.transport
|
||||
)))
|
||||
Result::Err(Error::Other(anyhow!("Incorrect transport {}", transport)))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,26 +1,6 @@
|
|||
use serde::{Deserialize, Serialize};
|
||||
use serde_json::Value;
|
||||
use std::{collections::HashMap, path::PathBuf};
|
||||
|
||||
#[derive(Debug, PartialEq, Clone, Deserialize, Serialize)]
|
||||
#[serde(rename_all = "kebab-case")]
|
||||
pub struct DebugTemplate {
|
||||
pub name: String,
|
||||
pub request: String,
|
||||
pub completion: Vec<String>,
|
||||
pub args: HashMap<String, String>,
|
||||
}
|
||||
|
||||
#[derive(Debug, PartialEq, Clone, Deserialize, Serialize)]
|
||||
#[serde(rename_all = "kebab-case")]
|
||||
pub struct DebugAdapterConfig {
|
||||
pub name: String,
|
||||
pub transport: String,
|
||||
pub command: String,
|
||||
pub args: Vec<String>,
|
||||
pub port_arg: Option<String>,
|
||||
pub templates: Vec<DebugTemplate>,
|
||||
}
|
||||
use std::path::PathBuf;
|
||||
|
||||
pub trait Request {
|
||||
type Arguments: serde::de::DeserializeOwned + serde::Serialize;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue