This commit is contained in:
Jingwen Owen Ou 2013-05-28 11:07:08 -07:00
Родитель 13b66491e9
Коммит e8b74fb39f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -105,7 +105,7 @@ func buildEditCommand(editorPath, messageFile string) *ExecCmd {
r := regexp.MustCompile("[mg]?vi[m]$")
if r.MatchString(editorPath) {
editCmd.WithArg("-c")
editCmd.WithArg("set ft=gitcommit")
editCmd.WithArg("set ft=gitcommit tw=0 wrap lbr")
}
editCmd.WithArg(messageFile)