You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
failing=awaitassertAnyFile('vscode.proposed.chatParticipantAdditions.d.ts')&&(quiet||warn(`The VSCode import file '${$root}/vscode.proposed.chatParticipantAdditions.d.ts' should not be present.`))||failing;
354
+
355
+
if(!failing){
356
+
verbose('VSCode proposals appear to be in place.');
* Thank you for the contribution. [@yiftahw](https://github.com/yiftahw)[PR #12960](https://github.com/microsoft/vscode-cpptools/pull/12960)
3
+
## Version 1.23.4: January 16, 2025
4
+
### Bug Fixes
5
+
* Fix a couple bugs with `.editorConfig` handling. [PR #13140](https://github.com/microsoft/vscode-cpptools/pull/13140)
6
+
* Fix a bug when processing a file with invalid multi-byte sequences. [#13150](https://github.com/microsoft/vscode-cpptools/issues/13150)
7
+
* Fix a potential telemetry issue with Copilot hover. [PR #13158](https://github.com/microsoft/vscode-cpptools/pull/13158)
8
+
* Fix a crash when Copilot hover is used on code with no definition file (e.g. literals).
9
+
* Update clang-format and clang-tidy from 19.1.6 to 19.1.7.
10
+
* Update vsdbg from 17.12.10729.1 to 17.13.20115.1.
11
+
* Fix `libiconv.dll` not being signed on Windows.
7
12
13
+
## Version 1.23.3: January 9, 2025
8
14
### Enhancements
9
15
* Modifications to the snippet completions to more closely match the snippets provided by TypeScript. [#4482](https://github.com/microsoft/vscode-cpptools/issues/4482)
telemetry.logLanguageServerEvent("CopilotHover",{"Message": "Copilot summary is not available due to content exclusion."});
1436
+
awaitshowCopilotContent(copilotHoverProvider,hoverDocument,hoverPosition,localize("copilot.hover.unavailable","Copilot summary is not available.")+"\n\n"+
1437
+
localize("copilot.hover.excluded","The file containing this symbol's definition or declaration has been excluded from use with Copilot."));
telemetry.logLanguageServerEvent("CopilotHover",{"Message": "Copilot summary is not available for this symbol."});
1434
-
awaitshowCopilotContent(copilotHoverProvider,hoverDocument,hoverPosition,localize("copilot.hover.unavailable","Copilot summary is not available for this symbol."));
1450
+
awaitshowCopilotContent(copilotHoverProvider,hoverDocument,hoverPosition,localize("copilot.hover.unavailable.symbol","Copilot summary is not available for this symbol."));
0 commit comments