aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src
diff options
context:
space:
mode:
authorDmitry Sharshakov2021-10-09 13:06:32 +0000
committerDmitry Sharshakov2021-10-09 13:06:32 +0000
commitbc0084d071ac53fa460370667cdd8740e7499c76 (patch)
treed427340a3d68fd4200f1ae42a8464bf234b77fe2 /helix-term/src
parent48cb81eff13f3f33d85f3bff731df4f9db1e4659 (diff)
fix command descriptions
Diffstat (limited to 'helix-term/src')
-rw-r--r--helix-term/src/commands.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs
index 9cf912cf..6a678de1 100644
--- a/helix-term/src/commands.rs
+++ b/helix-term/src/commands.rs
@@ -2423,21 +2423,21 @@ mod cmd {
},
TypableCommand {
name: "debug-start",
- alias: Some("dbg"),
+ aliases: &["dbg"],
doc: "Start a debug session from a given template with given parameters.",
fun: debug_start,
completer: None,
},
TypableCommand {
name: "debug-remote",
- alias: Some("dbg-tcp"),
+ aliases: &["dbg-tcp"],
doc: "Connect to a debug adapter by TCP address and start a debugging session from a given template with given parameters.",
fun: debug_remote,
completer: None,
},
TypableCommand {
name: "debug-eval",
- alias: None,
+ aliases: &[],
doc: "Evaluate expression in current debug context.",
fun: debug_eval,
completer: None,