diff --git a/denops/guise/editor.ts b/denops/guise/editor.ts index 105fd64..ebd1f40 100644 --- a/denops/guise/editor.ts +++ b/denops/guise/editor.ts @@ -1,11 +1,11 @@ -import type { Denops } from "https://deno.land/x/denops_std@v3.1.4/mod.ts"; -import * as autocmd from "https://deno.land/x/denops_std@v3.1.4/autocmd/mod.ts"; -import * as anonymous from "https://deno.land/x/denops_std@v3.1.4/anonymous/mod.ts"; -import * as batch from "https://deno.land/x/denops_std@v3.1.4/batch/mod.ts"; -import * as fn from "https://deno.land/x/denops_std@v3.1.4/function/mod.ts"; -import * as vars from "https://deno.land/x/denops_std@v3.1.4/variable/mod.ts"; -import * as option from "https://deno.land/x/denops_std@v3.1.4/option/mod.ts"; -import { deferred } from "https://deno.land/std@0.128.0/async/mod.ts"; +import type { Denops } from "https://deno.land/x/denops_std@v6.5.1/mod.ts"; +import * as autocmd from "https://deno.land/x/denops_std@v6.5.1/autocmd/mod.ts"; +import * as anonymous from "https://deno.land/x/denops_std@v6.5.1/anonymous/mod.ts"; +import * as batch from "https://deno.land/x/denops_std@v6.5.1/batch/mod.ts"; +import * as fn from "https://deno.land/x/denops_std@v6.5.1/function/mod.ts"; +import * as vars from "https://deno.land/x/denops_std@v6.5.1/variable/mod.ts"; +import * as option from "https://deno.land/x/denops_std@v6.5.1/option/mod.ts"; +import { deferred } from "https://deno.land/std@0.224.0/async/mod.ts"; /** * Open a scratch buffer in a new tab page and return immediately. diff --git a/denops/guise/main.ts b/denops/guise/main.ts index 89bd577..52fdfad 100644 --- a/denops/guise/main.ts +++ b/denops/guise/main.ts @@ -1,15 +1,15 @@ -import type { Denops } from "https://deno.land/x/denops_std@v3.1.4/mod.ts"; -import * as batch from "https://deno.land/x/denops_std@v3.1.4/batch/mod.ts"; -import * as helper from "https://deno.land/x/denops_std@v3.1.4/helper/mod.ts"; -import * as vars from "https://deno.land/x/denops_std@v3.1.4/variable/mod.ts"; -import * as unknownutil from "https://deno.land/x/unknownutil@v2.0.0/mod.ts"; +import type { Denops } from "https://deno.land/x/denops_std@v6.5.1/mod.ts"; +import * as batch from "https://deno.land/x/denops_std@v6.5.1/batch/mod.ts"; +import * as helper from "https://deno.land/x/denops_std@v6.5.1/helper/mod.ts"; +import * as vars from "https://deno.land/x/denops_std@v6.5.1/variable/mod.ts"; +import * as unknownutil from "https://deno.land/x/unknownutil@v3.18.1/mod.ts"; import { Session as VimSession, -} from "https://deno.land/x/vim_channel_command@v1.0.0/mod.ts"; +} from "https://deno.land/x/vim_channel_command@v3.1.1/mod.ts"; import { Dispatcher, Session as NvimSession, -} from "https://deno.land/x/msgpack_rpc@v3.1.4/mod.ts"; +} from "https://deno.land/x/msgpack_rpc@v4.0.1/mod.ts"; import * as editor from "./editor.ts"; const GUISE_VIM_ADDRESS = "GUISE_VIM_ADDRESS";