We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 506100f commit db6f21cCopy full SHA for db6f21c
src/autofill.ts
@@ -4,6 +4,7 @@
4
import * as vscode from "vscode";
5
import { Repository } from "./api/git";
6
import { getChanges } from "./git/cli";
7
+import { getCommitTemplateValue } from "./git/commitTemplate";
8
import { getCommitMsg, setCommitMsg } from "./gitExtension";
9
import { generateMsg } from "./prepareCommitMsg";
10
@@ -39,5 +40,8 @@ export async function makeAndFillCommitMsg(repository: Repository) {
39
40
const newMsg = generateMsg(fileChanges, oldMsg);
41
console.debug("New message: ", newMsg);
42
43
+ const commitMessageValue = await getCommitTemplateValue()
44
+ console.debug({ commitMessageValue })
45
+
46
setCommitMsg(repository, newMsg);
47
}
0 commit comments