mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 03:47:51 +03:00
Run debug console in windows (#2294)
This commit is contained in:
parent
2cb1ea7127
commit
c80ac84978
1 changed files with 26 additions and 5 deletions
|
@ -4,6 +4,7 @@ use helix_core::Selection;
|
||||||
use helix_dap::{self as dap, Client, Payload, Request, ThreadId};
|
use helix_dap::{self as dap, Client, Payload, Request, ThreadId};
|
||||||
use helix_lsp::block_on;
|
use helix_lsp::block_on;
|
||||||
use log::warn;
|
use log::warn;
|
||||||
|
use std::io::ErrorKind;
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
|
||||||
#[macro_export]
|
#[macro_export]
|
||||||
|
@ -285,11 +286,31 @@ impl Editor {
|
||||||
serde_json::from_value(request.arguments.unwrap_or_default()).unwrap();
|
serde_json::from_value(request.arguments.unwrap_or_default()).unwrap();
|
||||||
// TODO: no unwrap
|
// TODO: no unwrap
|
||||||
|
|
||||||
let process = std::process::Command::new("tmux")
|
let process = if cfg!(windows) {
|
||||||
.arg("split-window")
|
std::process::Command::new("wt")
|
||||||
.arg(arguments.args.join(" "))
|
.arg("new-tab")
|
||||||
.spawn()
|
.arg("--title")
|
||||||
.unwrap();
|
.arg("DEBUG")
|
||||||
|
.arg("cmd")
|
||||||
|
.arg("/C")
|
||||||
|
.arg(arguments.args.join(" "))
|
||||||
|
.spawn()
|
||||||
|
.unwrap_or_else(|error| match error.kind() {
|
||||||
|
ErrorKind::NotFound => std::process::Command::new("conhost")
|
||||||
|
.arg("cmd")
|
||||||
|
.arg("/C")
|
||||||
|
.arg(arguments.args.join(" "))
|
||||||
|
.spawn()
|
||||||
|
.unwrap(),
|
||||||
|
e => panic!("Error to start debug console: {}", e),
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
std::process::Command::new("tmux")
|
||||||
|
.arg("split-window")
|
||||||
|
.arg(arguments.args.join(" "))
|
||||||
|
.spawn()
|
||||||
|
.unwrap()
|
||||||
|
};
|
||||||
|
|
||||||
let _ = debugger
|
let _ = debugger
|
||||||
.reply(
|
.reply(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue