editor: add Node.js debugger

This commit is contained in:
Dmitry Sharshakov 2021-09-26 21:36:06 +03:00
parent 0e51e5fbaf
commit d943a51e3e
No known key found for this signature in database
GPG key ID: 471FD32E15FD8473
5 changed files with 44 additions and 3 deletions

View file

@ -5,6 +5,7 @@ use crate::{
Rope, RopeSlice, Tendril,
};
use helix_dap::DebuggerQuirks;
pub use helix_syntax::get_language;
use arc_swap::ArcSwap;
@ -107,11 +108,14 @@ pub struct DebugTemplate {
pub struct DebugAdapterConfig {
pub name: String,
pub transport: String,
#[serde(default)]
pub command: String,
#[serde(default)]
pub args: Vec<String>,
pub port_arg: Option<String>,
pub templates: Vec<DebugTemplate>,
#[serde(default)]
pub quirks: DebuggerQuirks,
}
#[derive(Debug, Serialize, Deserialize)]