mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-13 17:23:02 -05:00
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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user