From 5d489bef99ba36d1c8f86824582c2f0293eb6e96 Mon Sep 17 00:00:00 2001 From: Derek Parker Date: Fri, 14 Aug 2015 08:58:17 -0500 Subject: [PATCH] terminal/command: Add "ls" alias for list command --- terminal/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminal/command.go b/terminal/command.go index 60ef895c..5bd0d5f7 100644 --- a/terminal/command.go +++ b/terminal/command.go @@ -69,7 +69,7 @@ func DebugCommands(client service.Client) *Commands { {aliases: []string{"regs"}, cmdFn: regs, helpMsg: "Print contents of CPU registers."}, {aliases: []string{"exit", "quit", "q"}, cmdFn: exitCommand, helpMsg: "Exit the debugger."}, {aliases: []string{"stack", "bt"}, cmdFn: stackCommand, helpMsg: "stack [ []]. Prints stack."}, - {aliases: []string{"list"}, cmdFn: listCommand, helpMsg: "list . Show source around current point or provided linespec."}, + {aliases: []string{"list", "ls"}, cmdFn: listCommand, helpMsg: "list . Show source around current point or provided linespec."}, } return c -- GitLab