diff --git a/.vscode/tasks.json b/.vscode/tasks.json index c1dd77b..48f6896 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -4,7 +4,7 @@ "version": "2.0.0", "tasks": [ { - "label": "Unix Build", + "label": "Build P# Interpreter", "type": "shell", "command": "make", "group": { @@ -16,7 +16,7 @@ } }, { - "label": "Unix Clean", + "label": "Clean P# Interpreter", "type": "shell", "command": "make", "args": [ @@ -29,6 +29,21 @@ "presentation": { "reveal": "silent" } + }, + { + "label": "Style P# Code", + "type": "shell", + "command": "make", + "args": [ + "style" + ], + "group": { + "kind": "build", + "isDefault": true + }, + "presentation": { + "reveal": "silent" + } } ] } \ No newline at end of file