Home > database >  How to clear the output everytime run code in VSCode? I'm using terminal in VSCode to run
How to clear the output everytime run code in VSCode? I'm using terminal in VSCode to run

Time:09-08

enter image description here

Check the following in settings so that the last run result can be cleared automatically when running the file:

enter image description here

enter image description here

You can also add the following codes to your settings.json:

"code-runner.clearPreviousOutput": true,

"code-runner.runInTerminal": true

  • Related