From b979d7749af46b6427ddf251adcbfe4d4d52d1ff Mon Sep 17 00:00:00 2001 From: Scott Wadden Date: Thu, 26 May 2022 19:19:51 -0300 Subject: [PATCH] Clear console before each run --- .vscode/launch.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index f3ba9b95..a760f3e0 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -17,7 +17,10 @@ "args": [], "cwd": "${workspaceFolder}/app", "preLaunchTask": "Build enu", - "initCommands": ["command source ${workspaceRoot}/.lldbinit"] + "initCommands": ["command source ${workspaceRoot}/.lldbinit"], + "presentation": { + "clear": true // <-- this line + } }, { "type": "lldb", @@ -27,7 +30,10 @@ "args": [], "cwd": "${workspaceFolder}", "preLaunchTask": "Build Current File", - "initCommands": ["command source ${workspaceRoot}/.lldbinit"] + "initCommands": ["command source ${workspaceRoot}/.lldbinit"], + "presentation": { + "clear": true // <-- this line + } } ] } \ No newline at end of file