From 4b573fe127f30011dd6e0b63f38d912cc0fc7d40 Mon Sep 17 00:00:00 2001 From: Steve Hancock Date: Sat, 23 May 2020 11:07:00 -0700 Subject: [PATCH] removed '{' as list alignment --- lib/Perl/Tidy/VerticalAligner.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Perl/Tidy/VerticalAligner.pm b/lib/Perl/Tidy/VerticalAligner.pm index 31325c7b..f3cea148 100644 --- a/lib/Perl/Tidy/VerticalAligner.pm +++ b/lib/Perl/Tidy/VerticalAligner.pm @@ -991,7 +991,7 @@ sub decide_if_list { my $jmax = $line->get_jmax(); foreach ( 1 .. $jmax - 2 ) { - if ( $rtokens->[$_] !~ /^(\,|=>|\{)/ ) { + if ( $rtokens->[$_] !~ /^(\,|=>)/ ) { $list_type = ""; last; } -- 2.39.5