mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-06 04:17:43 +03:00
editor: add Node.js debugger
This commit is contained in:
parent
0e51e5fbaf
commit
d943a51e3e
5 changed files with 44 additions and 3 deletions
|
@ -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)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue