From d06a3f7c7ab244f1f2d7376de1238186de3bc9cd Mon Sep 17 00:00:00 2001 From: Hillel Date: Fri, 20 Dec 2024 14:25:24 -0600 Subject: [PATCH] Remove unnecessary activation events Whenever I open the extension, vscode complains that commands don't need to be added to activationEvents. This commit fixes that terrible oversight. Signed-off-by: Hillel --- package.json | 8 -------- 1 file changed, 8 deletions(-) diff --git a/package.json b/package.json index 0b1179a..746c423 100644 --- a/package.json +++ b/package.json @@ -35,14 +35,6 @@ "Modeling" ], "activationEvents": [ - "onLanguage:tlaplus", - "onCommand:tlaplus.parse", - "onCommand:tlaplus.model.check.run", - "onCommand:tlaplus.model.check.customRun", - "onCommand:tlaplus.exportToTex", - "onCommand:tlaplus.exportToPdf", - "onCommand:tlaplus.evaluateSelection", - "onCommand:tlaplus.evaluateExpression", "workspaceContains:**/*.tla" ], "main": "./out/main.js",