summary refs log tree commit diff
path: root/.vim/snippets/gitcommit.lua
blob: 8e8e18fac077c119486f22f662d51d74d0e4bd7d (plain) (blame)
1
2
3
4
5
6
---@diagnostic disable: undefined-global
return {
  s('sign', fmt([[Signed-off-by: {}]], { sn(1, user_email) })),
  s('change', fmt([[Change-type: {}]], { c(1, { t('patch'), t('minor'), t('major') }) })),
  s('coauth', fmt([[Co-authored-by: {}]], { i(1) })),
}