From 774decfc311710c12a27a3c5cd827c96fea4d332 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Wed, 8 Sep 2021 23:32:51 -0400 Subject: Defer printing comment if line is blank or closing brace This fixes badly indented comments. --- bin/git-comment.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/git-comment.pl b/bin/git-comment.pl index 9efebf83..7f85b6d6 100644 --- a/bin/git-comment.pl +++ b/bin/git-comment.pl @@ -74,7 +74,7 @@ while (<$pipe>) { } elsif (/^\t(\s*)(.*)/) { my ($indent, $line) = ($1, $2); - unless ($printed) { + unless ($printed || $line =~ /^}?$/) { $printed = 1; if ( $group >= $minGroup && -- cgit 1.4.1