Skip to content

Commit

Permalink
fix off-by-one git-commit rulers (helix-editor#7072)
Browse files Browse the repository at this point in the history
Characters should maximally reside *inside* the ruler, not on top of it.
  • Loading branch information
CobaltCause authored and mtoohey31 committed Jun 2, 2024
1 parent af3d4eb commit 327e7c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion languages.toml
Original file line number Diff line number Diff line change
Expand Up @@ -1245,7 +1245,7 @@ roots = []
file-types = ["COMMIT_EDITMSG"]
comment-token = "#"
indent = { tab-width = 2, unit = " " }
rulers = [50, 72]
rulers = [51, 73]
text-width = 72

[[grammar]]
Expand Down

0 comments on commit 327e7c2

Please sign in to comment.