disabling the language capabilities which we're not supporting this release (#100)

* disabling the language capabilities which we're not supporting this release
This commit is contained in:
Leila Lali
2016-10-19 14:27:03 -07:00
committed by GitHub
parent 4ee6de63f5
commit 09c6c52292

View File

@@ -150,10 +150,10 @@ namespace Microsoft.SqlTools.ServiceLayer.Hosting
Capabilities = new ServerCapabilities
{
TextDocumentSync = TextDocumentSyncKind.Incremental,
DefinitionProvider = true,
ReferencesProvider = true,
DocumentHighlightProvider = true,
HoverProvider = true,
DefinitionProvider = false,
ReferencesProvider = false,
DocumentHighlightProvider = false,
HoverProvider = true,
CompletionProvider = new CompletionOptions
{
ResolveProvider = true,