28 lines
1.2 KiB
TypeScript
28 lines
1.2 KiB
TypeScript
// The module 'vscode' contains the VS Code extensibility API
|
|
// Import the module and reference it with the alias vscode in your code below
|
|
import { ExtensionContext, languages } from "vscode";
|
|
import { createAgentInstance, disposeAgentInstance } from "./agent";
|
|
import { tabbyCommands } from "./commands";
|
|
import { TabbyCompletionProvider } from "./TabbyCompletionProvider";
|
|
import { TabbyStatusBarItem } from "./TabbyStatusBarItem";
|
|
|
|
// this method is called when your extension is activated
|
|
// your extension is activated the very first time the command is executed
|
|
export async function activate(context: ExtensionContext) {
|
|
console.debug("Activating Tabby extension", new Date());
|
|
await createAgentInstance(context);
|
|
const completionProvider = TabbyCompletionProvider.getInstance();
|
|
const statusBarItem = new TabbyStatusBarItem(completionProvider);
|
|
context.subscriptions.push(
|
|
languages.registerInlineCompletionItemProvider({ pattern: "**" }, completionProvider),
|
|
statusBarItem.register(),
|
|
...tabbyCommands(),
|
|
);
|
|
}
|
|
|
|
// this method is called when your extension is deactivated
|
|
export async function deactivate() {
|
|
console.debug("Deactivating Tabby extension", new Date());
|
|
await disposeAgentInstance();
|
|
}
|