diff options
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/commands.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 9a0a5e4c..c39802a2 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -2277,10 +2277,10 @@ mod cmd { }, TypableCommand { name: "debug-start", - alias: None, + alias: Some("dbg"), doc: "Start a debug session from a given template with given parameters.", fun: debug_start, - completer: None, + completer: Some(completers::filename), }, TypableCommand { name: "debug-eval", |