From 3f3de1a9b5554dbc117e0577e127c06c5f466d29 Mon Sep 17 00:00:00 2001 From: Chad Whitacre Date: Thu, 18 Jan 2018 19:02:06 -0500 Subject: [PATCH] Add "l" alias for list command (#1080) Help out those of us habituated to pdb. <:^) https://docs.python.org/3/library/pdb.html --- pkg/terminal/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/terminal/command.go b/pkg/terminal/command.go index abda44c1..d75962a8 100644 --- a/pkg/terminal/command.go +++ b/pkg/terminal/command.go @@ -200,7 +200,7 @@ If regex is specified only package variables with a name matching it will be ret Argument -a shows more registers.`}, {aliases: []string{"exit", "quit", "q"}, cmdFn: exitCommand, helpMsg: "Exit the debugger."}, - {aliases: []string{"list", "ls"}, allowedPrefixes: scopePrefix, cmdFn: listCommand, helpMsg: `Show source code. + {aliases: []string{"list", "ls", "l"}, allowedPrefixes: scopePrefix, cmdFn: listCommand, helpMsg: `Show source code. [goroutine ] [frame ] list []