From cd174972a48b0aea05d645c15e6ea8a8dfa9747e Mon Sep 17 00:00:00 2001 From: Ramya Achutha Rao Date: Mon, 2 Oct 2017 15:35:10 -0700 Subject: [PATCH] Changelog update --- CHANGELOG.md | 2 ++ src/goMain.ts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2094a05a4..1fef4d3e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,8 @@ We now have [Multi Root support](https://code.visualstudio.com/updates/v1_15#_pr * If the folder name in above cases has `-` or `.`, then what appears after the `-` or `.` is suggested. * [Alexander Kohler (@alexkohler)](https://github.com/alexkohler) * A new setting `go.useCodeSnippetsOnFunctionSuggestWithoutType` is introduced. This allows completions of functions with their parameter signature but without the parameter types. [Feature Request 1241](https://github.com/Microsoft/vscode-go/issues/1241) +* [Miklós @kmikiy](https://github.com/kmikiy) + * 3 New snippets for the `Log` methods from the `testing` package ### Improvements around running and debugging tests diff --git a/src/goMain.ts b/src/goMain.ts index 894567494..37e85430e 100644 --- a/src/goMain.ts +++ b/src/goMain.ts @@ -49,7 +49,7 @@ export function activate(ctx: vscode.ExtensionContext): void { "data": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ - //sendTelemetryEvent('beta-testing', { version: '0.6.66', date: '10/01/2017' }); + // sendTelemetryEvent('beta-testing', { version: '0.6.66', date: '10/01/2017' }); let useLangServer = vscode.workspace.getConfiguration('go')['useLanguageServer']; let langServerFlags: string[] = vscode.workspace.getConfiguration('go')['languageServerFlags'] || [];