Skip to content

Commit 906fd2d

Browse files
authored
Seanmcm/auto open cpp properties (#2410)
* Invoke `Edit Configurations...` when the `Configuration Help` button is clicked.
1 parent 4afadad commit 906fd2d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Extension/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
* Fix WSL paths starting with `/mnt/` failing to get symbols parsed. [#2361](https://github.com/Microsoft/vscode-cpptools/issues/2361)
3737
* Fix IntelliSense process crash when hovering over a designated initializer list with an anonymous struct. [#2370](https://github.com/Microsoft/vscode-cpptools/issues/2370)
3838
* Stop showing "File: " in completion details for internal compiler defines. [#2387](https://github.com/Microsoft/vscode-cpptools/issues/2387)
39+
* Invoke `Edit Configurations...` when the `Configuration Help` button is clicked. [#2408](https://github.com/Microsoft/vscode-cpptools/issues/2408)
3940
* Fix to allow SIGINT to be sent using the kill -2 command when using pipeTransport.
4041

4142
## Version 0.17.7: July 22, 2018

Extension/src/LanguageServer/client.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -809,7 +809,7 @@ class DefaultClient implements Client {
809809
let showIntelliSenseFallbackMessage: PersistentState<boolean> = new PersistentState<boolean>("CPP.showIntelliSenseFallbackMessage", true);
810810
if (showIntelliSenseFallbackMessage.Value) {
811811
ui.showConfigureIncludePathMessage(() => {
812-
let learnMorePanel: string = "Learn More";
812+
let learnMorePanel: string = "Configuration Help";
813813
let dontShowAgain: string = "Don't Show Again";
814814
let fallbackMsg: string = this.configuration.VcpkgInstalled ?
815815
"Update your IntelliSense settings or use Vcpkg to install libraries to help find missing headers." :
@@ -824,6 +824,7 @@ class DefaultClient implements Client {
824824
vscode.commands.executeCommand("workbench.action.problems.focus");
825825
}
826826
});
827+
this.handleConfigurationEditCommand();
827828
break;
828829
case dontShowAgain:
829830
showIntelliSenseFallbackMessage.Value = false;

0 commit comments

Comments
 (0)