Clear console before each run

This commit is contained in:
Scott Wadden 2022-05-26 19:19:51 -03:00
parent ff59869126
commit b979d7749a
1 changed files with 8 additions and 2 deletions

10
.vscode/launch.json vendored
View File

@ -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
}
}
]
}