How to disable info messages in VSCode? #2692
Answered
by
DRSDavidSoft
anburocky3
asked this question in
Q&A
-
Every time, I open the terminal in vs code, I see this info text, it is not useful every time, I like to remove this info message, is there any way to remove this? These are my vscode config btw: "Cmder": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": ["/K", "%CMDER_ROOT%\\vendor\\bin\\vscode_init.cmd"]
} |
Beta Was this translation helpful? Give feedback.
Answered by
DRSDavidSoft
Nov 6, 2022
Replies: 1 comment 3 replies
-
Edit the 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
and
|
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
DRSDavidSoft
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Edit the
%CMDER_ROOT%\bin\vscode_init_args.cmd
file, navigate to the bottom and change 1 to 0 in both of theset verbose_output=1
statements.Example:
Then, please also add a
rem
before bothecho Applying Cmder VSCode settings
lines invscode_init_args.cmd
as well:and