Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions denops/guise/editor.ts
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
14 changes: 7 additions & 7 deletions denops/guise/main.ts
Original file line number Diff line number Diff line change
@@ -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";
Expand Down