File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ function triggerAutocompletePlus() {
12
12
exports . triggerAutocompletePlus = triggerAutocompletePlus ;
13
13
exports . provider = {
14
14
selector : '.source.ts' ,
15
- inclusionPriority : 4 ,
15
+ inclusionPriority : 3 ,
16
+ suggestionPriority : 3 ,
16
17
excludeLowerPriority : false ,
17
18
getSuggestions : function ( options ) {
18
19
var filePath = options . editor . getPath ( ) ;
Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ declare module autocompleteplus {
53
53
export interface Provider {
54
54
inclusionPriority ?: number ;
55
55
excludeLowerPriority ?: boolean ;
56
+ suggestionPriority ?: number ;
56
57
selector : string ;
57
58
disableForSelector ?: string ;
58
59
getSuggestions : ( options : RequestOptions ) => Promise < Suggestion [ ] > ;
@@ -79,7 +80,8 @@ interface SnippetsContianer {
79
80
80
81
export var provider : autocompleteplus . Provider = {
81
82
selector : '.source.ts' ,
82
- inclusionPriority : 4 ,
83
+ inclusionPriority : 3 ,
84
+ suggestionPriority : 3 ,
83
85
excludeLowerPriority : false ,
84
86
getSuggestions : ( options : autocompleteplus . RequestOptions ) : Promise < autocompleteplus . Suggestion [ ] > => {
85
87
You can’t perform that action at this time.
0 commit comments