From 4d8f5659ac5650bc832d3eea1d0c59668f76c4cd Mon Sep 17 00:00:00 2001 From: Derek Parker Date: Thu, 25 Jun 2015 07:40:18 -0500 Subject: [PATCH] Fix source file context formatting --- terminal/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminal/command.go b/terminal/command.go index 891fa931..6ecc5396 100644 --- a/terminal/command.go +++ b/terminal/command.go @@ -503,7 +503,7 @@ func printcontext(state *api.DebuggerState) error { arrow = "=>" } - context = append(context, fmt.Sprintf("\033[34m%s %d\033[0m: %s", arrow, i, line)) + context = append(context, fmt.Sprintf("\033[34m%s %d\033[0m:\t%s", arrow, i, line)) } fmt.Println(strings.Join(context, ""))