File tree Expand file tree Collapse file tree 3 files changed +11
-12
lines changed Expand file tree Collapse file tree 3 files changed +11
-12
lines changed Original file line number Diff line number Diff line change 1
1
export type {
2
2
Candidate ,
3
3
Context ,
4
- } from "https://deno.land/x/ddc_vim@v0.5.2 /types.ts" ;
5
- export { BaseSource } from "https://deno.land/x/ddc_vim@v0.5.2 /types.ts" ;
6
- export type { Denops } from "https://deno.land/x/ddc_vim@v0.5.2 /deps.ts" ;
7
- export { fn , vars } from "https://deno.land/x/ddc_vim@v0.5.2 /deps.ts" ;
4
+ } from "https://deno.land/x/ddc_vim@v0.11.0 /types.ts" ;
5
+ export { BaseSource } from "https://deno.land/x/ddc_vim@v0.11.0 /types.ts" ;
6
+ export type { Denops } from "https://deno.land/x/ddc_vim@v0.11.0 /deps.ts" ;
7
+ export { fn , vars } from "https://deno.land/x/ddc_vim@v0.11.0 /deps.ts" ;
8
8
export type {
9
9
GatherCandidatesArguments ,
10
- } from "https://deno.land/x/ddc_vim@v0.5.2 /base/source.ts" ;
11
- export * as path from "https://deno.land/std@0.106 .0/path/mod.ts" ;
12
- export * as io from "https://deno.land/std@0.106 .0/io/mod.ts" ;
13
- export * as fs from "https://deno.land/std@0.106 .0/fs/mod.ts" ;
14
- export * as asserts from "https://deno.land/std@0.106 .0/testing/asserts.ts" ;
10
+ } from "https://deno.land/x/ddc_vim@v0.11.0 /base/source.ts" ;
11
+ export * as path from "https://deno.land/std@0.107 .0/path/mod.ts" ;
12
+ export * as io from "https://deno.land/std@0.107 .0/io/mod.ts" ;
13
+ export * as fs from "https://deno.land/std@0.107 .0/fs/mod.ts" ;
14
+ export * as asserts from "https://deno.land/std@0.107 .0/testing/asserts.ts" ;
15
15
export {
16
16
asyncIteratorFrom as fromA ,
17
17
iteratorFrom as from ,
Original file line number Diff line number Diff line change @@ -39,9 +39,9 @@ const existsDir = async (filePath: string): Promise<boolean> => {
39
39
}
40
40
} ;
41
41
42
- export class Source extends BaseSource {
42
+ export class Source extends BaseSource < Params > {
43
43
async gatherCandidates (
44
- args : GatherCandidatesArguments ,
44
+ args : GatherCandidatesArguments < Params > ,
45
45
) : Promise < Candidate [ ] > {
46
46
const p = args . sourceParams as Params ;
47
47
const mode = p . mode === "os"
Original file line number Diff line number Diff line change @@ -50,7 +50,6 @@ EXAMPLES *ddc-file-examples*
50
50
\ 'file': {
51
51
\ 'mark': 'F',
52
52
\ 'isVolatile': v:true,
53
- \ 'minAutoCompleteLength': 1000,
54
53
\ 'forceCompletionPattern': '\S/\S*',
55
54
\ }})
56
55
call ddc#custom#patch_filetype(
You can’t perform that action at this time.
0 commit comments