Skip to content

Commit 7139f12

Browse files
FabianUntermoserlpil
authored andcommitted
refactor(gitcommits): remove default body value in conventional commits
1 parent 164bc3a commit 7139f12

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

UltiSnips/gitcommit.snippets

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,49 +3,48 @@
33
snippet fix "fix conventional commit"
44
fix(${1:scope}): ${2:title}
55

6-
${0:body}
6+
${0:${VISUAL}}
77

88
endsnippet
99

1010
snippet feat "feat conventional commit"
1111
feat(${1:scope}): ${2:title}
1212

13-
${0:body}
13+
${0:${VISUAL}}
1414

1515
endsnippet
1616

1717
snippet chore "chore conventional commit"
1818
chore(${1:scope}): ${2:title}
1919

20-
${0:body}
20+
${0:${VISUAL}}
2121

2222
endsnippet
2323

2424
snippet docs "docs conventional commit"
2525
docs(${1:scope}): ${2:title}
2626

27-
${0:body}
27+
${0:${VISUAL}}
2828

2929
endsnippet
3030

3131
snippet refactor "refactor conventional commit"
3232
refactor(${1:scope}): ${2:title}
3333

34-
${0:body}
34+
${0:${VISUAL}}
3535

3636
endsnippet
3737

3838
snippet test "test conventional commit"
3939
test(${1:scope}): ${2:title}
4040

41-
${0:body}
41+
${0:${VISUAL}}
4242

4343
endsnippet
4444

4545
snippet ci "ci conventional commit"
4646
ci(${1:scope}): ${2:title}
4747

48-
${0:body}
48+
${0:${VISUAL}}
4949

5050
endsnippet
51-

0 commit comments

Comments
 (0)