File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ const existsDir = async (filePath: string): Promise<boolean> => {
68
68
} ;
69
69
70
70
export class Source extends BaseSource < Params > {
71
- async getCompletePosition (
71
+ override async getCompletePosition (
72
72
args : GetCompletePositionArguments < Params > ,
73
73
) : Promise < number > {
74
74
const completePos = await args . denops . call (
@@ -79,7 +79,7 @@ export class Source extends BaseSource<Params> {
79
79
return Promise . resolve ( completePos ) ;
80
80
}
81
81
82
- async gather (
82
+ override async gather (
83
83
args : GatherArguments < Params > ,
84
84
) : Promise < Item [ ] > {
85
85
const p = args . sourceParams ;
@@ -314,7 +314,7 @@ export class Source extends BaseSource<Params> {
314
314
return items ;
315
315
}
316
316
317
- params ( ) : Params {
317
+ override params ( ) : Params {
318
318
return {
319
319
mode : "posix" ,
320
320
projMarkers : [
You can’t perform that action at this time.
0 commit comments