From 8e22cd7f65e4f2aebb29e1eb61e9fa786833b9c0 Mon Sep 17 00:00:00 2001 From: Blaine Bublitz Date: Tue, 15 Aug 2023 13:27:19 -0700 Subject: [PATCH] feat: Add execute command to handle Execute code lens --- 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) {