aboutsummaryrefslogtreecommitdiff
path: root/helix-dap
diff options
context:
space:
mode:
Diffstat (limited to 'helix-dap')
-rw-r--r--helix-dap/src/types.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-dap/src/types.rs b/helix-dap/src/types.rs
index d31b8023..7207f412 100644
--- a/helix-dap/src/types.rs
+++ b/helix-dap/src/types.rs
@@ -7,7 +7,7 @@ use std::{collections::HashMap, path::PathBuf};
pub struct DebugTemplate {
pub name: String,
pub request: String,
- pub completion: Option<Vec<String>>,
+ pub completion: Vec<String>,
pub args: HashMap<String, String>,
}