goLanguageServer: add a real link for the gopls survey

Change-Id: I9feba4b47671a3dd86b504935b831fb0643287b4
Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/245323
Run-TryBot: Rebecca Stambler <rstambler@golang.org>
TryBot-Result: kokoro <noreply+kokoro@google.com>
Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
diff --git a/src/goLanguageServer.ts b/src/goLanguageServer.ts
index 940b12b..ff63aab 100644
--- a/src/goLanguageServer.ts
+++ b/src/goLanguageServer.ts
@@ -871,9 +871,7 @@
 }
 
 async function promptForSurvey(cfg: SurveyConfig, now: Date) {
-	const selected = await vscode.window.showInformationMessage(`**TEST**: THE GOPLS SURVEY IS NOT YET AVAILABLE.
-
-Looks like you're using gopls, the Go language server.
+	const selected = await vscode.window.showInformationMessage(`Looks like you're using gopls, the Go language server.
 Would you be willing to fill out a quick survey about your experience with gopls?`, 'Yes', 'Not now', 'Never');
 
 	// Update the time last asked.
@@ -884,19 +882,7 @@
 			cfg.lastDateAccepted = now;
 			cfg.prompt = true;
 
-			// Open the link to the survey in a webview.
-			const panel = vscode.window.createWebviewPanel('goplsSurvey', 'gopls survey', {
-				viewColumn: null,
-				preserveFocus: false,
-			}, {});
-
-			// TODO(rstambler): Not sure how to set the correct height here.
-			panel.webview.html = `<!DOCTYPE html>
-<html>
-<body>
-<iframe width="100%" height="500px" src="https://golang.org"></iframe>
-</body>
-</html>`;
+			await vscode.env.openExternal(vscode.Uri.parse(`https://google.qualtrics.com/jfe/form/SV_ekAdHVcVcvKUojX`));
 			break;
 		case 'Not now':
 			cfg.prompt = true;