Skip to content

Commit fddcea5

Browse files
committed
[release] goLanguageServer: improve pop-up message
Change-Id: I037d99e3f355c5b66c6dfdd185d4c66423621dad Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/241089 Reviewed-by: Hyang-Ah Hana Kim <[email protected]> (cherry picked from commit 52351e8) Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/241163
1 parent 93ab0f6 commit fddcea5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/goLanguageServer.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -850,7 +850,8 @@ async function suggestGoplsIssueReport(msg: string, reason: errorKind) {
850850
return;
851851
}
852852
}
853-
const selected = await vscode.window.showInformationMessage(`${msg} Would you like to report a gopls issue ? `, 'Yes', 'Next time', 'Never');
853+
const selected = await vscode.window.showInformationMessage(`${msg} Would you like to report a gopls issue on GitHub?
854+
You will be asked to provide additional information and logs, so PLEASE READ THE CONTENT IN YOUR BROWSER.`, 'Yes', 'Next time', 'Never');
854855
switch (selected) {
855856
case 'Yes':
856857
// Prefill an issue title and report.

0 commit comments

Comments
 (0)