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:
François Laignel 2024-05-06 17:37:04 +02:00 committed by GitHub
parent 6876f923d5
commit f86f350d5d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 34 additions and 27 deletions

View file

@ -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>,
}