diff options
author | Dmitry Sharshakov | 2021-08-24 17:38:49 +0000 |
---|---|---|
committer | Dmitry Sharshakov | 2021-08-24 17:38:49 +0000 |
commit | 8cc6d68160e952004c84f88a2d9726b4e2d649fa (patch) | |
tree | 386022a99a15397efe4100e64226e097d4da3c01 /helix-term | |
parent | 235a84d989acb609ea34b423a45850d888a4038a (diff) |
Autocomplete files for debug command
Diffstat (limited to 'helix-term')
-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", |