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
Checklist
"C_Cpp.enhancedColorization": "Disabled"
If Disabling that^ makes the problem go away, then follow this to make an issue on the C++ extension: https://github.com/microsoft/vscode-cpptools/issues/new/choose
//Plaintext #include <cstdint> #include <bit> using uint32 = uint32_t; enum class OperatorID : uint32 { UNEFFECTED = 0, EOS = std::bit_cast<uint32>(";\0\0"), COMMA = std::bit_cast<uint32>(",\0\0"), LINE_CMNT = std::bit_cast<uint32>("//\0"), BLOCK_CMNT_OPEN = std::bit_cast<uint32>("/*\0"), BLOCK_CMNT_CLOSE = std::bit_cast<uint32>("*/\0"), LIST_CLOSE = std::bit_cast<uint32>("}\0\0"), EFFECTED = 1, };
The strings should be highlighted as strings.
Some additional screenshots showing the scopes:
punctuation.terminator.statement.cpp meta.enum.definition.cpp meta.body.enum.cpp meta.block.enum.cpp source.cpp
punctuation.separator.delimiter.comma.cpp meta.enum.definition.cpp meta.body.enum.cpp meta.block.enum.cpp source.cpp
Originally filed by @BlakeKessler in microsoft/vscode#237325
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Checklist
"C_Cpp.enhancedColorization": "Disabled"
If Disabling that^ makes the problem go away, then follow this to make an issue on the C++ extension:
https://github.com/microsoft/vscode-cpptools/issues/new/choose
The code with a problem is:
It looks like:
It should look like:
The strings should be highlighted as strings.
Some additional screenshots showing the scopes:
Originally filed by @BlakeKessler in microsoft/vscode#237325
The text was updated successfully, but these errors were encountered: