Skip to content

Commit 43d9cd5

Browse files
authored
Merge pull request #211 from vim-denops/v5-upgrade
V5 upgrade
2 parents 1d6a908 + feda14c commit 43d9cd5

Some content is hidden

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

74 files changed

+119
-113
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,10 @@ jobs:
8585
with:
8686
vim_type: "Vim"
8787
vim_version: "${{ matrix.host_version.vim }}"
88-
download: "never"
88+
# NOTE:
89+
# On Linux, Vim must be built from source to fix `input` issue
90+
# https://github.com/thinca/action-setup-vim/issues/11
91+
download: "${{ (runner.OS == 'Linux' && 'never') || 'available' }}"
8992
- name: Check Vim
9093
run: |
9194
echo ${DENOPS_TEST_VIM}
@@ -103,6 +106,9 @@ jobs:
103106
${DENOPS_TEST_NVIM} --version
104107
env:
105108
DENOPS_TEST_NVIM: ${{ steps.nvim.outputs.executable_path }}
109+
- name: Cache
110+
run: deno cache $(find . -name '*.ts')
111+
working-directory: ./repo
106112
- name: Test
107113
run: deno task test
108114
env:

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.186.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.188.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.186.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.188.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.186.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.188.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/denops_core@v4.0.0/mod.ts";
1+
import { Denops } from "https://deno.land/x/denops_core@v5.0.0/mod.ts";
22
import {
33
AutocmdEvent,
44
DefineOptions,

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.186.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
1+
import { assertEquals } from "https://deno.land/std@0.188.0/testing/asserts.ts";
2+
import { test } from "https://deno.land/x/denops_test@v1.3.1/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/denops_core@v4.0.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v5.0.0/mod.ts";
22
import { execute } from "../helper/execute.ts";
33
import { AutocmdEvent, DefineOptions, RemoveOptions } from "./types.ts";
44
import { buildDefineExpr, buildRemoveExpr } from "./utils.ts";

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.186.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
1+
import { assertEquals } from "https://deno.land/std@0.188.0/testing/asserts.ts";
2+
import { test } from "https://deno.land/x/denops_test@v1.3.1/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/denops_core@v4.0.0/mod.ts";
6+
} from "https://deno.land/x/denops_core@v5.0.0/mod.ts";
77

88
type Redraw = undefined | boolean;
99

denops_std/batch/batch_test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.188.0/testing/asserts.ts";
22
import {
33
assertSpyCall,
44
assertSpyCalls,
55
spy,
6-
} from "https://deno.land/std@0.186.0/testing/mock.ts";
7-
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
6+
} from "https://deno.land/std@0.188.0/testing/mock.ts";
7+
import { test } from "https://deno.land/x/denops_test@v1.3.1/mod.ts";
88
import { batch, BatchHelper } from "./batch.ts";
99

1010
test({

denops_std/batch/collect.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/denops_core@v4.0.0/mod.ts";
6+
} from "https://deno.land/x/denops_core@v5.0.0/mod.ts";
77

88
type VimVoid<T> = T extends void ? 0 : T;
99

denops_std/batch/collect_test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import {
22
assertEquals,
33
assertRejects,
4-
} from "https://deno.land/std@0.186.0/testing/asserts.ts";
5-
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
6-
import type { Denops } from "https://deno.land/x/denops_core@v4.0.0/mod.ts";
4+
} from "https://deno.land/std@0.188.0/testing/asserts.ts";
5+
import { test } from "https://deno.land/x/denops_test@v1.3.1/mod.ts";
6+
import type { Denops } from "https://deno.land/x/denops_core@v5.0.0/mod.ts";
77
import { collect } from "./collect.ts";
88

99
test({

denops_std/buffer/buffer.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/denops_core@v4.0.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v5.0.0/mod.ts";
22
import * as autocmd from "../autocmd/mod.ts";
33
import * as batch from "../batch/mod.ts";
44
import * as fn from "../function/mod.ts";

denops_std/buffer/buffer_test.ts

Lines changed: 2 additions & 2 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.186.0/testing/asserts.ts";
5-
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
4+
} from "https://deno.land/std@0.188.0/testing/asserts.ts";
5+
import { test } from "https://deno.land/x/denops_test@v1.3.1/mod.ts";
66
import { default as Encoding } from "https://cdn.skypack.dev/encoding-japanese@2.0.0/";
77
import * as fn from "../function/mod.ts";
88
import {

denops_std/buffer/decoration.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import type { Denops } from "https://deno.land/x/denops_core@v4.0.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v5.0.0/mod.ts";
22
import * as batch from "../batch/mod.ts";
33
import * as vimFn from "../function/vim/mod.ts";
44
import * as nvimFn from "../function/nvim/mod.ts";
5-
import * as itertools from "https://deno.land/x/itertools@v1.1.0/mod.ts";
5+
import * as itertools from "https://deno.land/x/itertools@v1.1.1/mod.ts";
66
import { unreachable } from "https://deno.land/x/unreachable@v0.1.0/mod.ts";
77

88
const cacheKey = "denops_std/buffer/decoration/vimDecorate/rs@1";

denops_std/buffer/decoration_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.186.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
1+
import { assertEquals } from "https://deno.land/std@0.188.0/testing/asserts.ts";
2+
import { test } from "https://deno.land/x/denops_test@v1.3.1/mod.ts";
33
import * as fn from "../function/mod.ts";
44
import * as vimFn from "../function/vim/mod.ts";
55
import * as nvimFn from "../function/nvim/mod.ts";

denops_std/buffer/fileencoding_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.186.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.188.0/testing/asserts.ts";
22
import { default as Encoding } from "https://cdn.skypack.dev/encoding-japanese@2.0.0/";
33
import { tryDecode } from "./fileencoding.ts";
44

denops_std/buffer/fileformat.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as unknownutil from "https://deno.land/x/unknownutil@v2.1.0/mod.ts";
1+
import * as unknownutil from "https://deno.land/x/unknownutil@v2.1.1/mod.ts";
22

33
export type FileFormat = "unix" | "dos" | "mac";
44

denops_std/buffer/fileformat_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.186.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.188.0/testing/asserts.ts";
22
import { FileFormat, findFileFormat, splitText } from "./fileformat.ts";
33

44
Deno.test("splitText", async (t) => {

denops_std/bufname/bufname.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const exprPattern = /^(.*?)(?:;(.*?))?(?:#(.*))?$/;
7878
* percent-encoded characters. It's required to distinguish `params` and or `fragment`.
7979
*
8080
* ```typescript
81-
* import { assertEquals } from "https://deno.land/std/testing/asserts.ts";
81+
* import { assertEquals } from "https://deno.land/std@0.188.0/testing/asserts.ts";
8282
* import { format } from "../bufname/mod.ts";
8383
*
8484
* assertEquals(
@@ -130,7 +130,7 @@ const exprPattern = /^(.*?)(?:;(.*?))?(?:#(.*))?$/;
130130
* constructing a buffer name from a real path. For example
131131
*
132132
* ```typescript
133-
* import { assertEquals } from "https://deno.land/std/testing/asserts.ts";
133+
* import { assertEquals } from "https://deno.land/std@0.188.0/testing/asserts.ts";
134134
* import * as path from "https://deno.land/std/path/mod.ts";
135135
* import { format } from "../bufname/mod.ts";
136136
*
@@ -170,7 +170,7 @@ export function format(
170170
* For example, if it contains unusable characters ("<>|?*).
171171
*
172172
* ```typescript
173-
* import { assertEquals } from "https://deno.land/std/testing/asserts.ts";
173+
* import { assertEquals } from "https://deno.land/std@0.188.0/testing/asserts.ts";
174174
* import { parse } from "../bufname/mod.ts";
175175
*
176176
* assertEquals(
@@ -224,7 +224,7 @@ export function format(
224224
* was constructed from a real path. For example
225225
*
226226
* ```typescript
227-
* import { assertEquals } from "https://deno.land/std/testing/asserts.ts";
227+
* import { assertEquals } from "https://deno.land/std@0.188.0/testing/asserts.ts";
228228
* import * as path from "https://deno.land/std/path/mod.ts";
229229
* import { parse } from "../bufname/mod.ts";
230230
*

denops_std/bufname/bufname_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import {
22
assertEquals,
33
assertThrows,
4-
} from "https://deno.land/std@0.186.0/testing/asserts.ts";
5-
import * as path from "https://deno.land/std@0.186.0/path/mod.ts";
4+
} from "https://deno.land/std@0.188.0/testing/asserts.ts";
5+
import * as path from "https://deno.land/std@0.188.0/path/mod.ts";
66
import { format, parse } from "./bufname.ts";
77

88
Deno.test("format throws exception when 'scheme' contains unusable characters", () => {

denops_std/bufname/utils_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.186.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.188.0/testing/asserts.ts";
22
import { decode, encode } from "./utils.ts";
33

44
Deno.test("encode does nothing on alphabet characters", () => {

denops_std/function/_generated.ts

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

denops_std/function/buffer.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/denops_core@v4.0.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v5.0.0/mod.ts";
22
import type { BufInfo, ChangeList, MarkInformation } from "./types.ts";
33

44
/**

denops_std/function/buffer_test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.188.0/testing/asserts.ts";
22
import {
33
assertArray,
44
isObject,
5-
} from "https://deno.land/x/unknownutil@v2.1.0/mod.ts";
6-
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
5+
} from "https://deno.land/x/unknownutil@v2.1.1/mod.ts";
6+
import { test } from "https://deno.land/x/denops_test@v1.3.1/mod.ts";
77
import { BufInfo } from "./types.ts";
88
import * as buffer from "./buffer.ts";
99

denops_std/function/common.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/denops_core@v4.0.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v5.0.0/mod.ts";
22

33
/**
44
* The result is a Number, which is `TRUE` if **{expr}** is defined,

denops_std/function/cursor.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/denops_core@v4.0.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v5.0.0/mod.ts";
22
import type { Position, ScreenPos } from "./types.ts";
33

44
/**

denops_std/function/cursor_test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
2-
import { assertNumber } from "https://deno.land/x/unknownutil@v2.1.0/mod.ts";
3-
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
1+
import { assertEquals } from "https://deno.land/std@0.188.0/testing/asserts.ts";
2+
import { assertNumber } from "https://deno.land/x/unknownutil@v2.1.1/mod.ts";
3+
import { test } from "https://deno.land/x/denops_test@v1.3.1/mod.ts";
44
import * as cursor from "./cursor.ts";
55
import { assertPosition, assertScreenPos, isScreenPos } from "./types.ts";
66

denops_std/function/getreginfo.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import type { Denops } from "https://deno.land/x/denops_core@v4.0.0/mod.ts";
2-
import { lt } from "https://deno.land/std@0.186.0/semver/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v5.0.0/mod.ts";
2+
import { lt } from "https://deno.land/std@0.188.0/semver/mod.ts";
33
import { execute } from "../helper/mod.ts";
44
import { generateUniqueString } from "../util.ts";
55

denops_std/function/input.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/denops_core@v4.0.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v5.0.0/mod.ts";
22
import { BuiltinCompletion, isValidBuiltinCompletion } from "./types.ts";
33

44
/**

denops_std/function/input_test.ts

Lines changed: 2 additions & 2 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.186.0/testing/asserts.ts";
5-
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
4+
} from "https://deno.land/std@0.188.0/testing/asserts.ts";
5+
import { test } from "https://deno.land/x/denops_test@v1.3.1/mod.ts";
66
import { input, inputlist, inputsecret } from "./input.ts";
77
import * as autocmd from "../autocmd/mod.ts";
88
import { execute } from "../helper/execute.ts";

denops_std/function/nvim/_generated.ts

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

denops_std/function/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {
22
AssertError,
33
isLike,
4-
} from "https://deno.land/x/unknownutil@v2.1.0/mod.ts";
4+
} from "https://deno.land/x/unknownutil@v2.1.1/mod.ts";
55

66
/**
77
* Type of `screenpos()` result.

denops_std/function/various.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/denops_core@v4.0.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v5.0.0/mod.ts";
22

33
/**
44
* Return a string that indicates the current mode.

denops_std/function/various_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.186.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
1+
import { assertEquals } from "https://deno.land/std@0.188.0/testing/asserts.ts";
2+
import { test } from "https://deno.land/x/denops_test@v1.3.1/mod.ts";
33
import * as various from "./various.ts";
44

55
test({

denops_std/function/vim/_generated.ts

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

denops_std/function/vim/prop_add_list.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/denops_core@v4.0.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v5.0.0/mod.ts";
22

33
export type PropAddListProps = {
44
bufnr?: number;

denops_std/helper/echo.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/denops_core@v4.0.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v5.0.0/mod.ts";
22
import { execute } from "./execute.ts";
33
import { generateUniqueString } from "../util.ts";
44

denops_std/helper/echo_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
1+
import { test } from "https://deno.land/x/denops_test@v1.3.1/mod.ts";
22
import { echo, echoerr } from "./echo.ts";
33

44
test({

denops_std/helper/execute.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type {
22
Context,
33
Denops,
4-
} from "https://deno.land/x/denops_core@v4.0.0/mod.ts";
4+
} from "https://deno.land/x/denops_core@v5.0.0/mod.ts";
55

66
/**
77
* Execute multi-lined Vim script directly

denops_std/helper/execute_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import {
22
assertEquals,
33
assertInstanceOf,
44
assertRejects,
5-
} from "https://deno.land/std@0.186.0/testing/asserts.ts";
6-
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
5+
} from "https://deno.land/std@0.188.0/testing/asserts.ts";
6+
import { test } from "https://deno.land/x/denops_test@v1.3.1/mod.ts";
77
import { execute } from "./execute.ts";
88

99
test({

denops_std/helper/input.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import type { Denops } from "https://deno.land/x/denops_core@v4.0.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v5.0.0/mod.ts";
22
import {
33
assertNumber,
44
assertString,
5-
} from "https://deno.land/x/unknownutil@v2.1.0/mod.ts";
5+
} from "https://deno.land/x/unknownutil@v2.1.1/mod.ts";
66
import * as fn from "../function/mod.ts";
77
import * as lambda from "../lambda/mod.ts";
88
import { execute } from "./execute.ts";

denops_std/helper/input_test.ts

Lines changed: 2 additions & 2 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.186.0/testing/asserts.ts";
5-
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
4+
} from "https://deno.land/std@0.188.0/testing/asserts.ts";
5+
import { test } from "https://deno.land/x/denops_test@v1.3.1/mod.ts";
66
import { input } from "./input.ts";
77
import { execute } from "./execute.ts";
88
import * as autocmd from "../autocmd/mod.ts";

0 commit comments

Comments
 (0)