diff --git a/file/error.go b/file/error.go index 64d60f9..4aed323 100644 --- a/file/error.go +++ b/file/error.go @@ -46,7 +46,7 @@ func (err Error) Error () (formattedMessage string) { // print information about the location of the mistake if err.width > 0 { formattedMessage += fmt.Sprint ( - " ", err.Location.row + 1, + " \033[34m", err.Location.row + 1, ":", err.Location.column + 1) } formattedMessage +=