Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit2e62382

Browse files
committed
Update changelog for 0.19.0.
1 parenta9a09dc commit2e62382

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

‎Extension/CHANGELOG.md‎

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

33
##Version 0.19.0: September 26, 2018
4-
* Add support for v2 of the configuration provider API.[#2237](https://github.com/Microsoft/vscode-cpptools/issues/2237)
4+
* Change the symbol database to update without needing to save.[#202](https://github.com/Microsoft/vscode-cpptools/issues/202)
5+
* Enable IntelliSense-based`Go to Definition` for the current translation unit, including local variables and overloaded operators.[#255](https://github.com/Microsoft/vscode-cpptools/issues/255),[#979](https://github.com/Microsoft/vscode-cpptools/issues/979)
6+
* Improved the`Go to Definition` performance with large workspaces and files with lots of`#include`s.[#273](https://github.com/Microsoft/vscode-cpptools/issues/273)
7+
* Disable`Go to Definition` for invalid tokens, e.g. comments, strings, keywords, etc.[#559](https://github.com/Microsoft/vscode-cpptools/issues/559)
58
* Add`C_Cpp.updateChannel` setting for easier access to Insider builds of the extension.[#1526](https://github.com/Microsoft/vscode-cpptools/issues/1526)
9+
* Add support for v2 of the configuration provider API.[#2237](https://github.com/Microsoft/vscode-cpptools/issues/2237)
10+
* Fix bug with parsing definitions in`compile_commands.json`.[#2305](https://github.com/Microsoft/vscode-cpptools/issues/2305)
11+
* Fix`sh` failure when attaching to a remote Linux process.[#2444](https://github.com/Microsoft/vscode-cpptools/issues/2444)
12+
* Fix incorrect default`cl.exe` macro.[PR#2468](https://github.com/Microsoft/vscode-cpptools/issues/2468)
13+
* Fix multiple bugs with the symbols in the Outline view not updating correctly.[#2477](https://github.com/Microsoft/vscode-cpptools/issues/2477),[#2500](https://github.com/Microsoft/vscode-cpptools/issues/2500),[#2504](https://github.com/Microsoft/vscode-cpptools/issues/2504)
14+
* Add support for`workspaceFolderBasename` expansion.[#2491](https://github.com/Microsoft/vscode-cpptools/issues/2491)
15+
* Gabriel Arjones (@g-arjones)[PR#2495](https://github.com/Microsoft/vscode-cpptools/pull/2495),[PR#2503](https://github.com/Microsoft/vscode-cpptools/pull/2503)
616
* Fix bug with variable resolution.[#2532](https://github.com/Microsoft/vscode-cpptools/issues/2532)
17+
* Fix off-by-one bug with hover and`Go to Definition`.[#2535](https://github.com/Microsoft/vscode-cpptools/issues/2535)
718

819
##Version 0.18.1: August 17, 2018
920
* Fix 0.18.0 regression causing non-MinGW compilers to use`-fms-extensions` on Windows.[#2424](https://github.com/Microsoft/vscode-cpptools/issues/2424),[#2425](https://github.com/Microsoft/vscode-cpptools/issues/2425)
@@ -13,18 +24,18 @@
1324
* Add the`C_Cpp.intelliSenseEngine` setting value of`Disabled` (for users who only use the debugger).[#785](https://github.com/Microsoft/vscode-cpptools/issues/785)
1425
* Add`C_Cpp.workspaceSymbols` setting with default`Just My Code` to filter out system header symbols.[#1119](https://github.com/Microsoft/vscode-cpptools/issues/1119),[#2320](https://github.com/Microsoft/vscode-cpptools/issues/2320)
1526
* Add`C_Cpp.inactiveRegionForegroundColor` and`C_Cpp.inactiveRegionBackgroundColor` settings.[#1620](https://github.com/Microsoft/vscode-cpptools/issues/1620),[#2212](https://github.com/Microsoft/vscode-cpptools/issues/2212)
16-
* John Patterson (@john-patterson)[PR 2308](https://github.com/Microsoft/vscode-cpptools/pull/2308)
27+
* John Patterson (@john-patterson)[PR#2308](https://github.com/Microsoft/vscode-cpptools/pull/2308)
1728
* Add`gcc-x64``intelliSenseMode` and send the correct clang or gcc version to our parser, fixing various IntelliSense errors.[#2112](https://github.com/Microsoft/vscode-cpptools/issues/2112),[#2175](https://github.com/Microsoft/vscode-cpptools/issues/2175),[#2260](https://github.com/Microsoft/vscode-cpptools/issues/2260),[#2299](https://github.com/Microsoft/vscode-cpptools/issues/2299),[#2317](https://github.com/Microsoft/vscode-cpptools/issues/2317)
1829
* Make`Go to Definition` on the definition go to the declaration instead.[#2298](https://github.com/Microsoft/vscode-cpptools/issues/2298)
1930
* Add multi-pass environment variable resolution allowing variables defined in terms of other variables.[#2057](https://github.com/Microsoft/vscode-cpptools/issues/2057)
20-
* John Patterson (@john-patterson)[PR 2322](https://github.com/Microsoft/vscode-cpptools/pull/2322)
21-
* Allow users to use`~` for`${userProfile}` on Windows.[PR 2333](https://github.com/Microsoft/vscode-cpptools/pull/2333)
31+
* John Patterson (@john-patterson)[PR#2322](https://github.com/Microsoft/vscode-cpptools/pull/2322)
32+
* Allow users to use`~` for`${userProfile}` on Windows.[PR#2333](https://github.com/Microsoft/vscode-cpptools/pull/2333)
2233
* Add support for compiler flags`-fms-extensions` and`-fno-ms-extensions` on Windows (the default for MinGW-based compilers).[#2363](https://github.com/Microsoft/vscode-cpptools/issues/2363)
2334
* Make completion "show more results" (i.e. inaccessible members) when invoked a 2nd time.[#2386](https://github.com/Microsoft/vscode-cpptools/issues/2386)
2435

2536
###Bug Fixes
2637
* Fix attach to process for systems without`bash` by using`sh` instead.[#569](https://github.com/Microsoft/vscode-cpptools/issues/569)
27-
* Andy Neff (@andyneff)[PR 2340](https://github.com/Microsoft/vscode-cpptools/pull/2340)
38+
* Andy Neff (@andyneff)[PR#2340](https://github.com/Microsoft/vscode-cpptools/pull/2340)
2839
* Fix IntelliSense crash after hover or completion with`_Complex` types.[#689](https://github.com/Microsoft/vscode-cpptools/issues/689),[#1112](https://github.com/Microsoft/vscode-cpptools/issues/1112)
2940
* Fix`files.exclude` not working to exclude non-workspace folders from symbol parsing.[#1066](https://github.com/Microsoft/vscode-cpptools/issues/1066)
3041
* Fix`Switch Header/Source` to give results that match the parent folder name before using just the file name.[#1085](https://github.com/Microsoft/vscode-cpptools/issues/1085)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp