使用 Git,我的提交编辑器是 Vim。我总是在记住换行方面做得很差,所以我得到了很长的行(例如,参见 this answer)。有没有办法使用一些 git config
或 .vimrc
魔法让 Vim 自动换行 72 列?
Related question.
最佳答案
将此添加到您的 .vimrc
:
au FileType gitcommit setlocal tw=72
关于git - 在 Vim 中自动包装很长的 Git 提交消息,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11023194/