Skip to content

How to disable info messages in VSCode? #2692

Answered by DRSDavidSoft
anburocky3 asked this question in Q&A
Discussion options

You must be logged in to vote

Edit the %CMDER_ROOT%\bin\vscode_init_args.cmd file, navigate to the bottom and change 1 to 0 in both of the set verbose_output=1 statements.

Example:

if defined CMDER_CONFIGURED (
    rem Set Cmder settings here for when VSCode is launched inside Cmder.
    set verbose_output=0
) else (
    rem Set Cmder settings here for when VSCode is launched from outside Cmder.
    set verbose_output=0
)

Then, please also add a rem before both echo Applying Cmder VSCode settings lines in vscode_init_args.cmd as well:

rem echo Applying Cmder VSCode settings from '%~0'...

and

rem echo Applying Cmder VSCode settings is complete!

Replies: 1 comment 3 replies

Comment options

You must be logged in to vote
3 replies
@anburocky3
Comment options

@DRSDavidSoft
Comment options

@waptik
Comment options

Answer selected by DRSDavidSoft
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment