From 7eb8a52543c09fcf11b18d168be262fb51f43bf7 Mon Sep 17 00:00:00 2001 From: Blaine Bublitz Date: Wed, 16 Aug 2023 10:45:20 -0700 Subject: [PATCH] feat: Add execute command to handle Execute code lens (#31) --- src/extension.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/extension.ts b/src/extension.ts index a7cd019..597041a 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -150,6 +150,7 @@ function getLspCommand(uri: Uri) { let INTERNAL_COMMANDS = [ { type: "nargo", command: "test", group: TaskGroup.Test }, { type: "nargo", command: "compile", group: TaskGroup.Build }, + { type: "nargo", command: "execute", group: TaskGroup.Build }, ]; function registerCommands(uri: Uri) {