mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
Add debug-adapter field to languages.toml
This commit is contained in:
parent
dabec2d799
commit
c5b210df59
7 changed files with 45 additions and 10 deletions
|
@ -113,16 +113,14 @@ impl Client {
|
|||
}
|
||||
|
||||
pub async fn tcp_process(
|
||||
cmd: &str,
|
||||
args: Vec<&str>,
|
||||
port_format: &str,
|
||||
config: DebugAdapterConfig,
|
||||
id: usize,
|
||||
) -> Result<(Self, UnboundedReceiver<Payload>)> {
|
||||
let port = Self::get_port().await.unwrap();
|
||||
|
||||
let process = Command::new(cmd)
|
||||
.args(args)
|
||||
.args(port_format.replace("{}", &port.to_string()).split(' '))
|
||||
let process = Command::new(config.command)
|
||||
.args(config.args)
|
||||
.args(config.port_arg.replace("{}", &port.to_string()).split(' '))
|
||||
// silence messages
|
||||
.stdin(Stdio::null())
|
||||
.stdout(Stdio::null())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue