Home > Back-end >  How to use the !exclude command in VSCode console?
How to use the !exclude command in VSCode console?

Time:02-11

How to exclude specific lines from being visible in the debug console?

Im trying to exclude any line starting with 2022:

enter image description here

I tried !exclude 2022, but im not sure how to use this command and i couldn't find anything while searching about.

CodePudding user response:

It should be ! followed by what you want to exclude, so: !2022.

Take a look: https://github.com/Dart-Code/Dart-Code/issues/1980#issuecomment-679092524

  • Related