We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 639e650 commit 684b37fCopy full SHA for 684b37f
1 file changed
src/extension.ts
@@ -5,7 +5,6 @@
5
* the prepareCommitMsg module to a target branch.
6
*/
7
import * as vscode from "vscode";
8
-import { TextDocument } from "vscode";
9
import { API } from "./api/git";
10
import { makeAndFillCommitMsg } from "./autofill";
11
import { getGitExtension } from "./gitExtension";
@@ -90,15 +89,6 @@ export function activate(context: vscode.ExtensionContext) {
90
89
);
91
92
context.subscriptions.push(disposable);
93
- context.subscriptions.push(
94
- vscode.workspace.onDidSaveTextDocument((e: TextDocument) => {
95
- vscode.window.showInformationMessage(
96
- `Generating commit message because file was saved - ${e.fileName}`
97
- );
98
- // TODO: Handle multiple repos by passing `sourceControl` or `uri`.
99
- _chooseRepoForAutofill();
100
- })
101
102
}
103
104
// prettier-ignore
0 commit comments