fix command descriptions
This commit is contained in:
parent
48cb81eff1
commit
bc0084d071
1 changed files with 3 additions and 3 deletions
|
@ -2423,21 +2423,21 @@ mod cmd {
|
||||||
},
|
},
|
||||||
TypableCommand {
|
TypableCommand {
|
||||||
name: "debug-start",
|
name: "debug-start",
|
||||||
alias: Some("dbg"),
|
aliases: &["dbg"],
|
||||||
doc: "Start a debug session from a given template with given parameters.",
|
doc: "Start a debug session from a given template with given parameters.",
|
||||||
fun: debug_start,
|
fun: debug_start,
|
||||||
completer: None,
|
completer: None,
|
||||||
},
|
},
|
||||||
TypableCommand {
|
TypableCommand {
|
||||||
name: "debug-remote",
|
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.",
|
doc: "Connect to a debug adapter by TCP address and start a debugging session from a given template with given parameters.",
|
||||||
fun: debug_remote,
|
fun: debug_remote,
|
||||||
completer: None,
|
completer: None,
|
||||||
},
|
},
|
||||||
TypableCommand {
|
TypableCommand {
|
||||||
name: "debug-eval",
|
name: "debug-eval",
|
||||||
alias: None,
|
aliases: &[],
|
||||||
doc: "Evaluate expression in current debug context.",
|
doc: "Evaluate expression in current debug context.",
|
||||||
fun: debug_eval,
|
fun: debug_eval,
|
||||||
completer: None,
|
completer: None,
|
||||||
|
|
Loading…
Reference in a new issue