mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 02:47:45 +03:00
dap: Reply to RunInTerminal
This commit is contained in:
parent
d5d1a9b1ae
commit
2b4de41bf0
3 changed files with 160 additions and 143 deletions
|
@ -262,10 +262,11 @@ impl Client {
|
|||
pub fn reply(
|
||||
&self,
|
||||
request_seq: u64,
|
||||
command: String,
|
||||
command: &str,
|
||||
result: core::result::Result<Value, Error>,
|
||||
) -> impl Future<Output = Result<()>> {
|
||||
let server_tx = self.server_tx.clone();
|
||||
let command = command.to_string();
|
||||
|
||||
async move {
|
||||
let response = match result {
|
||||
|
|
|
@ -545,11 +545,11 @@ pub mod requests {
|
|||
|
||||
// Reverse Requests
|
||||
|
||||
#[derive(Debug, PartialEq, Clone, Deserialize, Serialize)]
|
||||
#[derive(Debug, Default, PartialEq, Clone, Deserialize, Serialize)]
|
||||
#[serde(rename_all = "camelCase")]
|
||||
pub struct RunInTerminalResponse {
|
||||
pub process_id: Option<usize>,
|
||||
pub shell_process_id: Option<usize>,
|
||||
pub process_id: Option<u32>,
|
||||
pub shell_process_id: Option<u32>,
|
||||
}
|
||||
|
||||
#[derive(Debug, PartialEq, Clone, Deserialize, Serialize)]
|
||||
|
@ -557,7 +557,7 @@ pub mod requests {
|
|||
pub struct RunInTerminalArguments {
|
||||
pub kind: Option<String>,
|
||||
pub title: Option<String>,
|
||||
pub cwd: String,
|
||||
pub cwd: Option<String>,
|
||||
pub args: Vec<String>,
|
||||
pub env: Option<HashMap<String, Option<String>>>,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue