From 7c748f0e31fb1879656e0b5d56aab70811e4aa7e Mon Sep 17 00:00:00 2001 From: Celestino Amoroso Date: Wed, 1 May 2024 21:53:03 +0200 Subject: [PATCH] formatter.go: format options added --- formatter.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/formatter.go b/formatter.go index c1b6e07..08f4110 100644 --- a/formatter.go +++ b/formatter.go @@ -7,7 +7,8 @@ package expr type FmtOpt uint16 const ( - tty FmtOpt = 1 << iota + TTY FmtOpt = 1 << iota + MultiLine ) type Formatter interface {