Skip to content

Commit

Permalink
Main extension file
Browse files Browse the repository at this point in the history
  • Loading branch information
RedCrafter07 committed Mar 24, 2022
1 parent b3f075f commit 28a35b4
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/extension.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// The module 'vscode' contains the VS Code extensibility API
// Import the module and reference it with the alias vscode in your code below
import * as vscode from 'vscode';
import file from './utils/file';

// this method is called when your extension is activated
// your extension is activated the very first time the command is executed
export function activate(context: vscode.ExtensionContext) {
file(); // The function for file popups and stuff
}

// this method is called when your extension is deactivated
export function deactivate() {}

0 comments on commit 28a35b4

Please sign in to comment.