Skip to content

Commit 0805cfb

Browse files
authored
Merge pull request #133 from vim-denops/fix-buffer-replace-on-vim
📦 Update versions and follow the latest type changes
2 parents f2f7186 + 3283d6f commit 0805cfb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+87
-118
lines changed

denops_std/anonymous/mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Denops } from "https://deno.land/x/[email protected].1/mod.ts";
1+
import type { Denops } from "https://deno.land/x/[email protected].2/mod.ts";
22

33
// https://github.com/microsoft/TypeScript/issues/26223#issuecomment-674500430
44
export type TupleOf<T, N extends number> = N extends N

denops_std/anonymous/mod_test.ts

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import {
22
assertEquals,
33
assertRejects,
4-
} from "https://deno.land/std@0.133.0/testing/asserts.ts";
5-
import { test } from "https://deno.land/x/[email protected].1/test/mod.ts";
4+
} from "https://deno.land/std@0.149.0/testing/asserts.ts";
5+
import { test } from "https://deno.land/x/[email protected].2/test/mod.ts";
66
import * as anonymous from "./mod.ts";
77

88
test({
@@ -43,21 +43,18 @@ test({
4343
async () => {
4444
await denops.dispatch(denops.name, ids[0]);
4545
},
46-
undefined,
4746
`No method '${ids[0]}' exists`,
4847
);
4948
await assertRejects(
5049
async () => {
5150
await denops.dispatch(denops.name, ids[1]);
5251
},
53-
undefined,
5452
`No method '${ids[1]}' exists`,
5553
);
5654
await assertRejects(
5755
async () => {
5856
await denops.dispatch(denops.name, ids[2]);
5957
},
60-
undefined,
6158
`No method '${ids[2]}' exists`,
6259
);
6360
},
@@ -81,21 +78,18 @@ test({
8178
async () => {
8279
await denops.dispatch(denops.name, ids[0]);
8380
},
84-
undefined,
8581
`No method '${ids[0]}' exists`,
8682
);
8783
await assertRejects(
8884
async () => {
8985
await denops.dispatch(denops.name, ids[1]);
9086
},
91-
undefined,
9287
`No method '${ids[1]}' exists`,
9388
);
9489
await assertRejects(
9590
async () => {
9691
await denops.dispatch(denops.name, ids[2]);
9792
},
98-
undefined,
9993
`No method '${ids[2]}' exists`,
10094
);
10195
},

denops_std/argument/flags_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.133.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.149.0/testing/asserts.ts";
22
import { parseFlags } from "./flags.ts";
33

44
Deno.test("parseFlags", () => {

denops_std/argument/mod_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.133.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.149.0/testing/asserts.ts";
22
import { parse } from "./mod.ts";
33

44
Deno.test("parse", () => {

denops_std/argument/opts_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.133.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.149.0/testing/asserts.ts";
22
import { parseOpts } from "./opts.ts";
33

44
Deno.test("parseOpts", () => {

denops_std/autocmd/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Denops } from "https://deno.land/x/[email protected].1/mod.ts";
1+
import { Denops } from "https://deno.land/x/[email protected].2/mod.ts";
22
import { AutocmdEvent } from "./types.ts";
33

44
type CommonOptions = {

denops_std/autocmd/common_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { assertEquals } from "https://deno.land/std@0.133.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/[email protected].1/test/mod.ts";
1+
import { assertEquals } from "https://deno.land/std@0.149.0/testing/asserts.ts";
2+
import { test } from "https://deno.land/x/[email protected].2/test/mod.ts";
33
import { globals } from "../variable/mod.ts";
44
import { define, emit, emitAll, list, remove } from "./common.ts";
55

denops_std/autocmd/group.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Denops } from "https://deno.land/x/[email protected].1/mod.ts";
1+
import type { Denops } from "https://deno.land/x/[email protected].2/mod.ts";
22
import { execute } from "../helper/execute.ts";
33
import { AutocmdEvent } from "./types.ts";
44
import {

denops_std/autocmd/group_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { assertEquals } from "https://deno.land/std@0.133.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/[email protected].1/test/mod.ts";
1+
import { assertEquals } from "https://deno.land/std@0.149.0/testing/asserts.ts";
2+
import { test } from "https://deno.land/x/[email protected].2/test/mod.ts";
33
import { globals } from "../variable/mod.ts";
44
import { group } from "./group.ts";
55

denops_std/batch/batch.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type {
33
Denops,
44
Dispatcher,
55
Meta,
6-
} from "https://deno.land/x/[email protected].1/mod.ts";
6+
} from "https://deno.land/x/[email protected].2/mod.ts";
77

88
class BatchHelper implements Denops {
99
#denops: Denops;

0 commit comments

Comments
 (0)