File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ function triggerAutocompletePlus() {
1212exports . triggerAutocompletePlus = triggerAutocompletePlus ;
1313exports . provider = {
1414 selector : '.source.ts' ,
15- inclusionPriority : 4 ,
15+ inclusionPriority : 3 ,
16+ suggestionPriority : 3 ,
1617 excludeLowerPriority : false ,
1718 getSuggestions : function ( options ) {
1819 var filePath = options . editor . getPath ( ) ;
Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ declare module autocompleteplus {
5353 export interface Provider {
5454 inclusionPriority ?: number ;
5555 excludeLowerPriority ?: boolean ;
56+ suggestionPriority ?: number ;
5657 selector : string ;
5758 disableForSelector ?: string ;
5859 getSuggestions : ( options : RequestOptions ) => Promise < Suggestion [ ] > ;
@@ -79,7 +80,8 @@ interface SnippetsContianer {
7980
8081export var provider : autocompleteplus . Provider = {
8182 selector : '.source.ts' ,
82- inclusionPriority : 4 ,
83+ inclusionPriority : 3 ,
84+ suggestionPriority : 3 ,
8385 excludeLowerPriority : false ,
8486 getSuggestions : ( options : autocompleteplus . RequestOptions ) : Promise < autocompleteplus . Suggestion [ ] > => {
8587
You can’t perform that action at this time.
0 commit comments