Skip to content

Commit 80f41b7

Browse files
authored
Fix issue with clang-format on-type (#5994)
1 parent 3e8df13 commit 80f41b7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Extension/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# C/C++ for Visual Studio Code Change Log
22

3-
## Version 0.30.0-insiders3: August 20, 2020
3+
## Version 0.30.0-insiders3: August 21, 2020
44
### New Features
55
* Support for running the extension on Linux arm64/aarch64 devices, using remoting. [#2506](https://github.com/microsoft/vscode-cpptools/issues/2506), [#5969](https://github.com/microsoft/vscode-cpptools/issues/5969)
66
* Add support for vcFormat settings in `.editorconfig` files. [PR #5932](https://github.com/microsoft/vscode-cpptools/pull/5932)

Extension/src/LanguageServer/client.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -834,8 +834,9 @@ class OnTypeFormattingEditProvider implements vscode.OnTypeFormattingEditProvide
834834
if (ch !== ';') {
835835
const result: vscode.TextEdit[] = [];
836836
resolve(result);
837+
} else {
838+
configCallBack(undefined);
837839
}
838-
configCallBack(undefined);
839840
} else {
840841
const editorConfigSettings: any = cachedEditorConfigSettings.get(filePath);
841842
if (!editorConfigSettings) {

0 commit comments

Comments
 (0)