Skip to content

Commit 9541ae4

Browse files
committed
📦 Use Denops v7.0.0-pre0
1 parent 4716593 commit 9541ae4

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed

batch/batch.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ class BatchHelper implements Denops {
3434
return this.#denops.meta;
3535
}
3636

37+
get interrupted(): AbortSignal {
38+
return this.#denops.interrupted;
39+
}
40+
3741
get context(): Record<string | number | symbol, unknown> {
3842
return this.#denops.context;
3943
}

batch/collect.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ class CollectHelper implements Denops {
3333
return this.#denops.meta;
3434
}
3535

36+
get interrupted(): AbortSignal {
37+
return this.#denops.interrupted;
38+
}
39+
3640
get context(): Record<string | number | symbol, unknown> {
3741
return this.#denops.context;
3842
}

deno.jsonc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
],
3434
"imports": {
3535
"@core/unknownutil": "jsr:@core/unknownutil@^3.18.0",
36-
"@denops/core": "jsr:@denops/core@^6.0.6",
37-
"@denops/test": "jsr:@denops/test@^2.0.0",
36+
"@denops/core": "jsr:@denops/core@^7.0.0-pre0",
37+
"@denops/test": "jsr:@denops/test@^3.0.0-pre0",
3838
"@lambdalisue/errorutil": "jsr:@lambdalisue/errorutil@^1.0.0",
3939
"@lambdalisue/itertools": "jsr:@lambdalisue/itertools@^1.1.2",
4040
"@lambdalisue/unreachable": "jsr:@lambdalisue/unreachable@^1.0.1",

helper/expr_string.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,10 @@ class ExprStringHelper implements Denops {
188188
return this.#denops.meta;
189189
}
190190

191+
get interrupted(): AbortSignal {
192+
return this.#denops.interrupted;
193+
}
194+
191195
get context(): Record<string | number | symbol, unknown> {
192196
return this.#denops.context;
193197
}

0 commit comments

Comments
 (0)