File tree Expand file tree Collapse file tree
src/vs/editor/common/services Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ import { IModelService } from 'vs/editor/common/services/modelService';
1717import { EditorSimpleWorkerImpl } from 'vs/editor/common/services/editorSimpleWorker' ;
1818import { LanguageConfigurationRegistry } from 'vs/editor/common/modes/languageConfigurationRegistry' ;
1919import { IConfigurationService } from 'vs/platform/configuration/common/configuration' ;
20- import { matchesPrefix } from 'vs/base/common/filters' ;
2120
2221/**
2322 * Stop syncing a model to the worker if it was not needed for 1 min.
@@ -49,7 +48,6 @@ export class EditorWorkerServiceImpl implements IEditorWorkerService {
4948 } ) ;
5049 const completionProvider = modes . SuggestRegistry . register ( '*' , < modes . ISuggestSupport > {
5150 triggerCharacters : [ ] ,
52- filter : matchesPrefix ,
5351 provideCompletionItems : ( model , position , token ) => {
5452 if ( configurationService . lookup < boolean > ( 'editor.wordBasedSuggestions' ) . value ) {
5553 return this . _workerManager . withWorker ( ) . then ( client => client . textualSuggest ( model . uri , position ) ) ;
You can’t perform that action at this time.
0 commit comments