Skip to content
New issue

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

Add an additional message to the #include error and also add a code action (fixit) for the squiggle to run the "Select Default Compiler" command. #10574

Merged
merged 29 commits into from
Mar 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
cce8101
change description for natvisDiagnostics
browntarik Feb 7, 2023
4f21691
Merge branch 'main' of https://github.com/Microsoft/vscode-cpptools
browntarik Feb 9, 2023
5e4d29b
Merge branch 'main' of https://github.com/Microsoft/vscode-cpptools
browntarik Feb 9, 2023
b338b8a
Merge branch 'main' of https://github.com/Microsoft/vscode-cpptools
browntarik Feb 13, 2023
2b31700
add telemetry for compiler notification and #
browntarik Feb 13, 2023
ae61eb0
update event name
browntarik Feb 13, 2023
2ec761f
telemetry if user browsed to configure compiler
browntarik Feb 13, 2023
0d09125
resolve PR
browntarik Feb 13, 2023
872afff
refactor to add try/catch logic
browntarik Feb 13, 2023
48c76dc
resolve PR
browntarik Feb 13, 2023
6801a65
resolve PR
browntarik Feb 13, 2023
d112f7d
Merge branch 'main' into browntarik/updateCompilerTelemetry
browntarik Feb 13, 2023
83793ca
change wording
browntarik Feb 13, 2023
43a0811
Merge branch 'browntarik/updateCompilerTelemetry' of https://github.c…
browntarik Feb 13, 2023
a9bfdaf
resolve PR
browntarik Feb 13, 2023
ed10a65
add localized strings
browntarik Feb 23, 2023
ed3f3f2
Merge branch 'main' into browntarik/compilerCodeAction
browntarik Feb 23, 2023
197e542
Merge branch 'main' into browntarik/compilerCodeAction
browntarik Feb 23, 2023
a127ce2
resolve casing
browntarik Feb 28, 2023
d4d5c90
Merge branch 'browntarik/compilerCodeAction' of https://github.com/Mi…
browntarik Mar 2, 2023
2cc2d1d
fix german translation
browntarik Mar 2, 2023
4f6d9fc
resolve loc
browntarik Mar 2, 2023
ddd6b58
resolve PR
browntarik Mar 3, 2023
0e3c49a
Merge branch 'main' into browntarik/compilerCodeAction
browntarik Mar 3, 2023
09f0649
resolve PR
browntarik Mar 6, 2023
877bbb1
Merge branch 'browntarik/compilerCodeAction' of https://github.com/Mi…
browntarik Mar 6, 2023
19ffe46
Merge branch 'main' into browntarik/compilerCodeAction
browntarik Mar 6, 2023
9fac119
resolve PR
browntarik Mar 6, 2023
bb566b6
Merge branch 'browntarik/compilerCodeAction' of https://github.com/Mi…
browntarik Mar 6, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Extension/bin/messages/de/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -1695,8 +1695,8 @@
null,
"Für die Vektoroperation sind identische Elementtypen erforderlich.",
"Die Vektoroperation gilt nicht für Vektoren mit nicht integralem Typ.",
"Die Datei \"%s\" kann nicht geöffnet werden: %sq2.",
"Die -Datei \"%s\" kann nicht geöffnet werden: %sq2: %s3.",
"Die Datei %s kann nicht geöffnet werden: %sq2.",
browntarik marked this conversation as resolved.
Show resolved Hide resolved
"Die -Datei %s kann nicht geöffnet werden: %sq2: %s3.",
"Vorkompilierte Headerdatei",
"Vordefiniertes Makro",
"Generierter C-Code",
Expand Down
2 changes: 1 addition & 1 deletion Extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2917,7 +2917,7 @@
"category": "C/C++"
},
{
"command": "C_Cpp.selectDefaultCompiler",
"command": "C_Cpp.SelectDefaultCompiler",
"title": "%c_cpp.command.selectDefaultCompiler.title%",
"category": "C/C++"
},
Expand Down
8 changes: 7 additions & 1 deletion Extension/src/nativeStrings.json
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,9 @@
"compiler": {
"text": "Note: IntelliSense is not fully configured. Use the 'Select Default Compiler' command to finish configuration."
},
"select_compiler": {
"text": "Select a compiler to locate system headers"
},
"expands_to": "Expands to:",
"attention_label": "Attention:",
"author_label": "Author:",
Expand Down Expand Up @@ -437,5 +440,8 @@
"text": "The operation is not supported for '%s'.",
"hint": "%s is the function that is not supported for an operation that involves automatically generating code."
},
"unknown_error": "Unknown error."
"unknown_error": "Unknown error.",
"run_select_compiler": {
"text": "Please run the 'Select Default Compiler' command to locate your system headers."
}
}