We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps to Reproduce:
This illustrates that VSCode can not support Unicode or Chinese character completely. Please add complete support to those character. Thank u!
compiling batch script code: `@echo off rem ----config---- set directory="C:\Program Files (x86)\MinGW64" rem --------------
echo Compiling... set "directory=%directory:"=%"
if exist "%directory%\bin\g++.exe" ( path="%directory%\bin" cd /d "%directory%" echo MinGW64 Directory: "%directory%" echo g++.exe %1 -o %2 -g3 bin\g++.exe %1 -o %2 -g3 echo Complete! exit )
echo Please correctly config the MinGW64 Directory in Compile.bat! `
launch.json: { "version": "0.2.0", "configurations": [ { "name": "C++ Launch (GDB)", "type": "cppdbg", "request": "launch", "launchOptionType": "Local", "targetArchitecture": "x64", "program": "${workspaceRoot}/a.exe", "args": [], "stopAtEntry": false, "cwd": "${workspaceRoot}", "environment": [], "externalConsole": true, "miDebuggerPath": "C:\\Program Files (x86)\\MinGW64\\bin\\gdb.exe" } ] }
{ "version": "0.2.0", "configurations": [ { "name": "C++ Launch (GDB)", "type": "cppdbg", "request": "launch", "launchOptionType": "Local", "targetArchitecture": "x64", "program": "${workspaceRoot}/a.exe", "args": [], "stopAtEntry": false, "cwd": "${workspaceRoot}", "environment": [], "externalConsole": true, "miDebuggerPath": "C:\\Program Files (x86)\\MinGW64\\bin\\gdb.exe" } ] }
tasks.json: { "version": "0.1.0", "command": "${workspaceRoot}\\.vscode\\Compile.bat", "isShellCommand": true, "args": ["${file}","${workspaceRoot}\\a.exe"], "showOutput": "always" }
{ "version": "0.1.0", "command": "${workspaceRoot}\\.vscode\\Compile.bat", "isShellCommand": true, "args": ["${file}","${workspaceRoot}\\a.exe"], "showOutput": "always" }
The text was updated successfully, but these errors were encountered:
Dups #3550.
Sorry, something went wrong.
dbaeumer
No branches or pull requests
Steps to Reproduce:
This illustrates that VSCode can not support Unicode or Chinese character completely. Please add complete support to those character. Thank u!
compiling batch script code:
`@echo off
rem ----config----
set directory="C:\Program Files (x86)\MinGW64"
rem --------------
echo Compiling...
set "directory=%directory:"=%"
if exist "%directory%\bin\g++.exe" (
path="%directory%\bin"
cd /d "%directory%"
echo MinGW64 Directory: "%directory%"
echo g++.exe %1 -o %2 -g3
bin\g++.exe %1 -o %2 -g3
echo Complete!
exit
)
echo Please correctly config the MinGW64 Directory in Compile.bat!
`
launch.json:
{ "version": "0.2.0", "configurations": [ { "name": "C++ Launch (GDB)", "type": "cppdbg", "request": "launch", "launchOptionType": "Local", "targetArchitecture": "x64", "program": "${workspaceRoot}/a.exe", "args": [], "stopAtEntry": false, "cwd": "${workspaceRoot}", "environment": [], "externalConsole": true, "miDebuggerPath": "C:\\Program Files (x86)\\MinGW64\\bin\\gdb.exe" } ] }
tasks.json:
{ "version": "0.1.0", "command": "${workspaceRoot}\\.vscode\\Compile.bat", "isShellCommand": true, "args": ["${file}","${workspaceRoot}\\a.exe"], "showOutput": "always" }
The text was updated successfully, but these errors were encountered: