mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-31 01:00:29 -04:00
Merge from vscode a234f13c45b40a0929777cb440ee011b7549eed2 (#8911)
* Merge from vscode a234f13c45b40a0929777cb440ee011b7549eed2 * update distro * fix layering * update distro * fix tests
This commit is contained in:
@@ -146,7 +146,7 @@ export class SnippetCompletionProvider implements CompletionItemProvider {
|
||||
i = to;
|
||||
}
|
||||
}
|
||||
return { suggestions };
|
||||
return { suggestions, isDetailsResolved: true };
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ import { ISnippetsService } from './snippets.contribution';
|
||||
import { getNonWhitespacePrefix } from './snippetsService';
|
||||
import { endsWith } from 'vs/base/common/strings';
|
||||
import { IDisposable, dispose } from 'vs/base/common/lifecycle';
|
||||
import * as editorCommon from 'vs/editor/common/editorCommon';
|
||||
import { IEditorContribution } from 'vs/editor/common/editorCommon';
|
||||
import { Range } from 'vs/editor/common/core/range';
|
||||
import { registerEditorContribution, EditorCommand, registerEditorCommand } from 'vs/editor/browser/editorExtensions';
|
||||
import { SnippetController2 } from 'vs/editor/contrib/snippet/snippetController2';
|
||||
@@ -21,7 +21,7 @@ import { Snippet } from './snippetsFile';
|
||||
import { SnippetCompletion } from './snippetCompletionProvider';
|
||||
import { EditorOption } from 'vs/editor/common/config/editorOptions';
|
||||
|
||||
export class TabCompletionController implements editorCommon.IEditorContribution {
|
||||
export class TabCompletionController implements IEditorContribution {
|
||||
|
||||
public static readonly ID = 'editor.tabCompletionController';
|
||||
static readonly ContextKey = new RawContextKey<boolean>('hasSnippetCompletions', undefined);
|
||||
|
||||
Reference in New Issue
Block a user