summary refs log tree commit diff
path: root/bin/git-comment.pl
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-09-08 22:12:50 -0400
committerJune McEnroe <june@causal.agency>2021-09-08 22:17:13 -0400
commit1a5ecb6c6d42d8e0a9284897c90d6047f8ad8842 (patch)
tree6d631b8a0001a9c596e7ddb947fbe5337a7a0f11 /bin/git-comment.pl
parentHandle dirty lines in git-comment (diff)
downloadsrc-1a5ecb6c6d42d8e0a9284897c90d6047f8ad8842.tar.gz
src-1a5ecb6c6d42d8e0a9284897c90d6047f8ad8842.zip
Up default min-repeat to 30 lines
Diffstat (limited to '')
-rw-r--r--bin/git-comment.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/git-comment.pl b/bin/git-comment.pl
index 01f7171d..9efebf83 100644
--- a/bin/git-comment.pl
+++ b/bin/git-comment.pl
@@ -24,7 +24,7 @@ use Git;
 
 my $repo = Git->repository();
 
-my ($all, $minGroup, $minRepeat, $noRepeat) = (0, 2, 20, 0);
+my ($all, $minGroup, $minRepeat, $noRepeat) = (0, 2, 30, 0);
 my $commentStart = $repo->config('comment.start') // "/*";
 my $commentLead = $repo->config('comment.lead') // " *";
 my $commentEnd = $repo->config('comment.end') // " */";