Add indicator when a line in a commit message exceeds 72 characters #3112
ashughes posted onGitHub
It would be really helpful if RGH could assist in managing the recommended 72 character line limit on git commit messages. Similar to suggest-commit-title-limit, this wouldn't prevent a user from typing a line that is over 72 characters, but would warn them if they do.
This is how I'm imagining it would work: For each line of text in the commit description, characters after 72 are highlighted in color (red/orange/yellow?) as a visual indicator that this line has exceeded 72 characters. If the user chooses, they can then wrap the line where desired.
Alternatively (or as a separate feature) RGH could automatically wrap the text at 72 characters, but not force the line to be 72 characters. This would still allow the user to backspace to undo the automatic wrapping if they don't want that particular line to wrap at 72 characters. This is similar to how vim
works when used with git commit
.
This would affect all locations where a commit message is written on GitHub. This is primarily PR merges, but also committing changes to individual files or any other place a commit can be made.