Releases: microsoft/vscode-cpptools
0.17.8-insiders
- Fix attach to process for systems without
bash
by usingsh
instead. #569 - Fix IntelliSense crash after hover or completion with
_Complex
types. #689, #1112 - Add
C_Cpp.workspaceSymbols
setting with defaultJust My Code
to filter out system header symbols. #1119, #2320 - Add
C_Cpp.inactiveRegionForegroundColor
andC_Cpp.inactiveRegionBackgroundColor
settings. #1620, #2212- John Patterson (@john-patterson) PR 2308
- Fix Mac framework dependencies not being discovered. #1913
- Fix red flame getting stuck after modifying
c_cpp_properties.json
. #2077 - Add
gcc-x64
intelliSenseMode
and send the correct clang or gcc version to our parser, fixing various IntelliSense errors. #2175, #2299, #2317 - Make
Go to Definition
on the definition go to the declaration instead. #2298 - Don't add empty
windowsSDKVersion
if none exists. #2300 - Add multi-pass environment variable resolution allowing variables defined in terms of other variables. #2322
- John Patterson (@john-patterson) PR 2322
- Fix IntelliSense crash when the gcc-8 type_traits header is used. #2323, #2328
- Limit configuration popups to one at a time. #2324
- Allow users to use
~
for${userProfile}
on Windows. PR 2333 - Filter out buggy IntelliSense error
"= delete" can only appear on the first declaration of a function
. #2352
Instructions
Download the .vsix that matches your OS and run the "Install from VSIX" command in VS Code.
0.17.7
- Fix
Go to Definition
for code scoped with an aliased namespace. #387 - Fix incorrect IntelliSense errors with template template-arguments. #1014
- Fix crash when using designated initializer lists. #1440
- Add
windowsSdkVersion
toc_cpp_properties.json
. #1585 - Add
${vcpkgRoot}
variable. #1817 - Fix dangling IntelliSense processes. #2075, #2169
- Fix incorrect IntelliSense errors when class template argument deduction is used. #2101
- Skip automatic parsing of source files in Mac system framework paths. #2156
- Fix
Edit Configurations...
not working afterc_cpp_properties.json
is deleted. #2214 - Fix indexing of the entire root drive on Windows when no is folder open. #2216
- Disable the config provider message for headers outside the workspace and when debugging. #2221
- Add
Change Configuration Provider...
command. #2224 - Fix out-of-memory crash with
#include
code actions when no folder is open. #2225 - Fix
intelliSenseMode
with custom config providers on Windows. #2228 - Fix formatting not working on Windows if the VC++ 2015 redist isn't installed. #2232
- Fix variables not resolving in
macFrameworkPath
. #2234 - Fix
Go to Definition
not working for macros followed by.
or->
. #2245 - Fix
#include
autocomplete with Mac framework headers. #2251 - Fix for debugging to support empty arguments for debuggee. #2258
- Fix
Go to Definition
bug (missing symbols outside the workspace). #2281 - Add a setting to silence configuration provider warnings. #2292
- Fix for debugging async Visual C++ causing debugger to hang.
- Fix
main
snippet.
Known Issues
- Due to bug #2169 from the previous release, you may still experience failures until all the dangling, old processes are killed (or restarting your machine), because the processes maintain a lock on the same database file. See #2296 for one case of this.
Instructions
Download the .vsix that matches your OS and run the "Install from VSIX" command in VS Code.
0.17.7-insiders
- Fix
Go to Definition
for code scoped with an aliased namespace. #387 - Fix incorrect IntelliSense errors with template template-arguments. #1014
- Fix crash when using designated initializer lists. #1440
- Add
windowsSdkVersion
toc_cpp_properties.json
. #1585 - Add
${vcpkgRoot}
variable. #1817 - Fix dangling IntelliSense processes and stuck red flame. #2075, #2077, #2169
- Fix incorrect IntelliSense errors when class template argument deduction is used. #2101
- Skip automatic parsing of source files in Mac system framework paths. #2156
- Fix
Edit Configurations...
not working afterc_cpp_properties.json
is deleted. #2214 - Fix indexing of the entire root drive on Windows when no is folder open. #2216
- Disable the config provider message for headers outside the workspace and when debugging. #2221
- Add
Change Configuration Provider...
command. #2224 - Fix out-of-memory crash with
#include
code actions when no folder is open. #2225 - Fix
intelliSenseMode
with custom config providers on Windows. #2228 - Fix variables not resolving in
macFrameworkPath
. #2234 - Fix
Go to Definition
not working for macros followed by.
or->
. #2245
Known Issues
This release had some regressions (unreported) that were fixed in the final 0.17.7 release.
Instructions
Download the .vsix that matches your OS and run the "Install from VSIX" command in VS Code.
0.17.6
- Fix the database icon getting stuck with recursive includes. #2104
- Fix the red flame appearing late with recursive includes. #2105
- Fix source files being parsed in system directories. #2156
NOTE: This wasn't fixed for system frameworks on Mac. - Fix internal document corruption (visible after formatting) when edits are made too soon after activation. #2162
- Fix a crash when saving with recursive includes. #2173
- Fix a crash when the
includePath
orbrowse.path
is"**"
. #2174 - Fix IntelliSense for WSL without g++ installed. #2178
- Fix random IntelliSense (completion) failures due to edits being delayed. #2184
- Fix database deletion failure with non-ASCII file paths on Windows. #2205
- Fix
Go to Definition
results withvar::
andvar->
, and filter out invalid constructor results. #2207 - Fix a performance bug with recursive includes.
- Fixed a CPU usage problem on Mac related to system frameworks parsing.
- Keep the IntelliSense process around for 10 seconds after a file is closed in case it's needed again.
- Added an API so build system extensions can provide IntelliSense configurations for source files. More details at npmjs.com.
- Fix automatic argument quoting when debugging with gdb/lldb to include when the argument has a '(' or ')' in it. Also escape existing '"' symbols.
- Removed
-
inps
call for ProcessPicker and RemoteProcessPicker. #2183
Instructions
Download the .vsix that matches your OS and run the "Install from VSIX" command in VS Code.
0.17.5
- Detect
compile_commands.json
and show prompt to use it. #1297 - Change inactive regions from gray to translucent. #1907
- Improve performance of recursive includes paths. #2068
- Fix IntelliSense client failure due to
No args provider
. #1908 - Fix
#include
completion with headers in the same directory. #2031 - Fix non-header files outside the workspace folder not being parsed (i.e. so
Go to Definition
works). #2053 - Fix some crashes. #2080
- Support asm clobber registers on Windows. #2090
- Fix usage of
${config:section.setting}
. #2165 browse.path
now inheritsincludePath
if not set inc_cpp_properties.json
.- On Windows,
compilerPath
now populates with the guessedcl.exe
path, and theMSVC
include path is based on thecl.exe
path. - Fix files under a non-recursive
browse.path
being removed from the database. - Fix
*
not working inbrowse.path
with WSL. - Fix for -break-insert main returning multiple bind points. #729
- Use -- instead of -x for gnome-terminal. #733
- Added
miDebuggerArgs
in order to pass arguments to the program inmiDebuggerPath
. #720
Instructions
Download the .vsix that matches your OS and run the "Install from VSIX" command in VS Code.
0.17.5-insiders
- Change inactive regions from gray to translucent. #1907
- Improve performance of recursive includes paths. #2068
- Fix #include completion with headers in the same directory. #2031
- Support asm clobber registers on Windows. #2090
- Fix some crashes. #2080
Instructions
Download the .vsix that matches your OS and run the "Install from VSIX" command in VS Code.
0.17.4
- Fix infinite loop (caused by deadlock) when using recursive includes. #2043
- Stop using recursive includes in the default configuration.
- Fix various other potential deadlocks and crashes.
- Fix Go to Definition on
#include
not filtering out results based on the path. #1253, #2033 - Fix database icon getting stuck. #1917
Instructions
Download the .vsix that matches your OS and run the "Install from VSIX" command in VS Code.
0.17.3
- Add support for
${workspaceFolder:folderName}
. #1774 - Fix infinite loop during initialization on Windows. #1960
- Fix main process IntelliSense-related crashes. #2006
- Fix deadlock after formatting large files. #2007
- Fix recursive includes failing to find some system includes. #2019
Instructions
Download the .vsix that matches your OS and run the "Install from VSIX" command in VS Code.
0.17.2-insiders
- Fix infinite loop during initialization on Windows. #1960
- Fix main process IntelliSense-related crashes. #2006
- Fix deadlock after formatting large files. #2007
- Fix recursive includes failing to find some system includes. #2019
Instructions
Download the .vsix that matches your OS and run the "Install from VSIX" command in VS Code.
NOTE
This vsix has the unintended version of 0.17.2 instead of 0.17.2-insiders, so our actual 0.17.2 was bumped to 0.17.3.
Status
This is the build we plan to release tomorrow, but we still need to do a final build and test pass (we found/fixed a last minute bug that delayed the official release).
0.17.1
- Improve performance of recursive includes. #1949
- Fix code navigation failure after switching between WSL and non-WSL configs. #1958
- Fix extension crash when the includePath is a file or the root drive. #1979, #1965
- Fix IntelliSense crash in have_member_access_from_class_scope. #1763
- Fix #include completion bugs. #1959, #1970
- Add Debug value for loggingLevel (previously the hidden value "6").
- Fix C++17 features not being fully enabled with msvc-x64 mode. #1990
- Fix IntelliSense interprocess deadlocks. #1407, #1777