diff --git a/Documentation/cli/README.md b/Documentation/cli/README.md index e51ce419d128b68a24a3af4fef951652cebfa37b..492b486e7ff948dee6f4028bb4abfda5e6519b14 100644 --- a/Documentation/cli/README.md +++ b/Documentation/cli/README.md @@ -398,6 +398,7 @@ Aliases: si ## stepout Step out of the current function. +Aliases: so ## thread Switch to the specified thread. diff --git a/pkg/terminal/command.go b/pkg/terminal/command.go index 91d0fa298c18bdc77fd5f223326aa8b7341c7369..f3eb87010c30b395ca7f6eaddfcf6f8f2f788515 100644 --- a/pkg/terminal/command.go +++ b/pkg/terminal/command.go @@ -144,7 +144,7 @@ the arguments. With -noargs, the process starts with an empty commandline. Optional [count] argument allows you to skip multiple lines. `}, - {aliases: []string{"stepout"}, cmdFn: c.stepout, helpMsg: "Step out of the current function."}, + {aliases: []string{"stepout", "so"}, cmdFn: c.stepout, helpMsg: "Step out of the current function."}, {aliases: []string{"call"}, cmdFn: c.call, helpMsg: `Resumes process, injecting a function call (EXPERIMENTAL!!!) call [-unsafe]