From 8cc6d68160e952004c84f88a2d9726b4e2d649fa Mon Sep 17 00:00:00 2001 From: Dmitry Sharshakov Date: Tue, 24 Aug 2021 20:38:49 +0300 Subject: [PATCH] Autocomplete files for debug command --- helix-term/src/commands.rs | 4 ++-- 1 file 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",