0.10.5
In this update we reverted a change we made in v0.10.4 which globally set language specific overrides for the editor.quickSuggestions
setting (Issue #572). The change in v0.10.4 resulted in an unexpected regression for developers using our extension in conjunction with another extension that provides auto-complete suggestions. Instead, in v0.10.5 we will add this setting to a developer’s settings.json file if the C_Cpp.autocomplete
setting is set to Default
and remove it (if applicable) when a developer changes this setting to Disabled
.
It is important to note, however, that a bug in the current stable version of VS Code (1.10.2) does not automatically refresh the settings.json file at the time the C_Cpp.autocomplete
setting changes values. To avoid getting a merge conflict in your settings.json file in VS Code, we recommend you close and reopen the settings.json file after making any changes to the C_Cpp.autocomplete
setting. The insider build of VS Code does not exhibit this bug, so we expect it to be fixed in the stable build shortly.
We also fixed a memory corruption bug reported in issue #430
We fixed some issues around missing symbols on Linux/Mac stdlib.h functions. #578
We made additional fixes for switch header/source not respecting files.exclude
. #485