mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 11:57:43 +03:00
Debugger template: allow missing or empty completion list (#10332)
It can be convenient to define project specific debugger templates, some of which might not necessitate prompting the user to define completion. This commit makes completion optional for debugger templates and starts the dap immediately if undefined or empty.
This commit is contained in:
parent
6876f923d5
commit
f86f350d5d
2 changed files with 34 additions and 27 deletions
|
@ -510,6 +510,7 @@ pub enum DebugArgumentValue {
|
|||
pub struct DebugTemplate {
|
||||
pub name: String,
|
||||
pub request: String,
|
||||
#[serde(default)]
|
||||
pub completion: Vec<DebugConfigCompletion>,
|
||||
pub args: HashMap<String, DebugArgumentValue>,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue