We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44518c9 commit c56f894Copy full SHA for c56f894
1 file changed
src/extension.ts
@@ -42,7 +42,7 @@ export function activate(context: vscode.ExtensionContext) {
42
function messageCombine(config: GitMessage) {
43
return [`${config.type}${config.scope ? '(' + config.scope + ')' : ''}: ${config.subject}`, config.body, config.footer]
44
.filter((item) => item)
45
- .join('\n');
+ .join('\n\n');
46
}
47
const gitExtension = getGitExtension();
48
if (!gitExtension?.enabled) {
0 commit comments