Removing groups
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index e308b9f..c7d4ebd 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -14,37 +14,25 @@
             "label": "Pretty",
             "type": "shell",
             "command": "make -f Makefile-Standalone pretty",
-            "group": {
-                "kind": "build",
-                "isDefault": true
-            }
+            "group": "none"
         },
         {
             "label": "Test & Check",
             "type": "shell",
             "command": "make -f Makefile-Standalone check",
-            "group": {
-                "kind": "build",
-                "isDefault": true
-            }
+            "group": "none"
         },
         {
             "label": "Dist Check",
             "type": "shell",
             "command": "make -f Makefile-Standalone distcheck",
-            "group": {
-                "kind": "build",
-                "isDefault": true
-            }
+            "group": "none"
         },
         {
             "label": "Clean",
             "type": "shell",
             "command": "make -f Makefile-Standalone clean",
-            "group": {
-                "kind": "build",
-                "isDefault": true
-            }
+            "group": "none"
         },
         {
             "label": "Bootstrap",