Skip to content

Commit a07c8fd

Browse files
authored
Undo detached. (#9026)
* Undo detached. * Update changelog.
1 parent e41ead2 commit a07c8fd

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

Extension/CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
# C/C++ for Visual Studio Code Change Log
22

3-
## Version 1.9.4-debug: March 11, 2022
3+
## Version 1.9.4-debug: March 14, 2022
44
* This is a debug build for Windows x64 intended to be used to get assertion failure information for bug [#8851](https://github.com/microsoft/vscode-cpptools/issues/8851).
55

6-
## Enhancement
6+
## Enhancements
7+
* Reserved identifiers with characters that match typed characters in the correct order but not contiguously are initially filtered in the auto-completion list. Doing a `ctrl` + `space` in the same location will show all auto-complete suggestions. [#4939](https://github.com/microsoft/vscode-cpptools/issues/4939)
78
* Show "Catastrophic error" during tag parsing with an Error logging severity and report the number of occurrences via telemetry. [#9013](https://github.com/microsoft/vscode-cpptools/issues/9013)
89

9-
## Bug Fix
10+
## Bug Fixes
1011
* Fix temp files randomly not getting deleted on Windows with a `C_Cpp.loggingLevel` of `Warning` or greater. [#9008](https://github.com/microsoft/vscode-cpptools/issues/9008)
12+
* Fix mingw clang being detected as gcc. [#9024](https://github.com/microsoft/vscode-cpptools/issues/9024)
1113

1214
## Version 1.9.3: March 9, 2022
1315
### New Feature

Extension/src/LanguageServer/client.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1076,8 +1076,10 @@ export class DefaultClient implements Client {
10761076
}
10771077
const serverName: string = this.getName(this.rootFolder);
10781078
const serverOptions: ServerOptions = {
1079-
run: { command: serverModule, options: { detached: true } },
1080-
debug: { command: serverModule, args: [serverName], options: { detached: true } }
1079+
// Running detached would be preferred; however, that causes cpptools-srv to create a console window
1080+
// on Windows and that can't seem to be suppressed without suppressing assertion dialog boxes.
1081+
run: { command: serverModule, options: { detached: false } },
1082+
debug: { command: serverModule, args: [serverName], options: { detached: false } }
10811083
};
10821084

10831085
// Get all the per-workspace settings.

0 commit comments

Comments
 (0)