From e9b3a9eac13af44913bf0ad7fd50281a1925f5ef Mon Sep 17 00:00:00 2001 From: Derek Parker Date: Wed, 29 Jul 2015 08:20:33 -0500 Subject: [PATCH] Remove duplicate command alias --- terminal/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminal/command.go b/terminal/command.go index 19c13655..7a99405f 100644 --- a/terminal/command.go +++ b/terminal/command.go @@ -53,7 +53,7 @@ func DebugCommands(client service.Client) *Commands { {aliases: []string{"step", "si"}, cmdFn: step, helpMsg: "Single step through program."}, {aliases: []string{"next", "n"}, cmdFn: next, helpMsg: "Step over to next source line."}, {aliases: []string{"threads"}, cmdFn: threads, helpMsg: "Print out info for every traced thread."}, - {aliases: []string{"thread", "t"}, cmdFn: thread, helpMsg: "Switch to the specified thread."}, + {aliases: []string{"thread", "tr"}, cmdFn: thread, helpMsg: "Switch to the specified thread."}, {aliases: []string{"clear"}, cmdFn: clear, helpMsg: "Deletes breakpoint."}, {aliases: []string{"clearall"}, cmdFn: clearAll, helpMsg: "Deletes all breakpoints."}, {aliases: []string{"goroutines"}, cmdFn: goroutines, helpMsg: "Print out info for every goroutine."}, -- GitLab