refactor: rename command and config prefix from aiCommit to zemit

This commit is contained in:
2026-04-15 14:34:55 -04:00
parent b9e0273d57
commit a102b0d714
3 changed files with 19 additions and 19 deletions
+3 -3
View File
@@ -4,11 +4,11 @@ import { fetchAvailableModels } from "./providers"
export function activate(context: vscode.ExtensionContext): void {
context.subscriptions.push(
vscode.commands.registerCommand("aiCommit.generateCommitMessage", (scm?: vscode.SourceControl) =>
vscode.commands.registerCommand("zemit.generateCommitMessage", (scm?: vscode.SourceControl) =>
generateCommitMsg(scm),
),
vscode.commands.registerCommand("aiCommit.abortGeneration", () => abortGeneration()),
vscode.commands.registerCommand("aiCommit.selectModel", () => selectModel()),
vscode.commands.registerCommand("zemit.abortGeneration", () => abortGeneration()),
vscode.commands.registerCommand("zemit.selectModel", () => selectModel()),
)
}