From 6330221fdbc419bd1a8a0ebd57fb9974c3cc9792 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laure=CE=B7t?= Date: Fri, 4 Mar 2022 14:21:16 +0100 Subject: [PATCH] fix: gave names to workspaces --- workspace.code-workspace | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/workspace.code-workspace b/workspace.code-workspace index 2015733..7ee794d 100644 --- a/workspace.code-workspace +++ b/workspace.code-workspace @@ -1,13 +1,16 @@ { - "folders": [ - { - "path": "src/emulator" - }, - { - "path": "src/server" - }, - { - "path": "." - } - ] + "folders": [ + { + "path": "src/emulator", + "name": "Emulator" + }, + { + "path": "src/server", + "name": "Server" + }, + { + "path": ".", + "name": "B00 Plays GBA" + } + ] }