Updated Messages

Changed the wording of the loading message
This commit is contained in:
tel0065 2022-05-05 11:54:32 -05:00 committed by GitHub
parent 940a8ed317
commit bb0b1be0d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,8 +14,7 @@ export const logger = new Logger(outputChannel);
let parser: pl.Parser = new pl.Parser();
export function activate(context: vscode.ExtensionContext) {
vscode.window.showInformationMessage("Mind_Reader is loaded!");
// Engage LineHighlighter
lineHighlighter();
parser.parse("Beep Boop");
@ -41,6 +40,8 @@ export function activate(context: vscode.ExtensionContext) {
let hubProvider = new CommandNodeProvider(hubCommands);
vscode.window.registerTreeDataProvider("hubActions", hubProvider);
vscode.window.showInformationMessage("Mind Reader finished loading!");
}
export function deactivate() {}