Skip to content

Commit

Permalink
📦 Update deno dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow authored Sep 24, 2021
1 parent 5faca58 commit 9ccd640
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions denops/guise/editor.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import type { Denops } from "https://deno.land/x/[email protected].2/mod.ts";
import * as autocmd from "https://deno.land/x/[email protected].2/autocmd/mod.ts";
import * as anonymous from "https://deno.land/x/[email protected].2/anonymous/mod.ts";
import * as batch from "https://deno.land/x/[email protected].2/batch/mod.ts";
import * as fn from "https://deno.land/x/[email protected].2/function/mod.ts";
import { deferred } from "https://deno.land/std@0.106.0/async/mod.ts";
import type { Denops } from "https://deno.land/x/[email protected].3/mod.ts";
import * as autocmd from "https://deno.land/x/[email protected].3/autocmd/mod.ts";
import * as anonymous from "https://deno.land/x/[email protected].3/anonymous/mod.ts";
import * as batch from "https://deno.land/x/[email protected].3/batch/mod.ts";
import * as fn from "https://deno.land/x/[email protected].3/function/mod.ts";
import { deferred } from "https://deno.land/std@0.108.0/async/mod.ts";

/**
* Open a scratch buffer in a new tab page and return immediately.
Expand Down
12 changes: 6 additions & 6 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/[email protected].2/mod.ts";
import * as batch from "https://deno.land/x/[email protected].2/batch/mod.ts";
import * as helper from "https://deno.land/x/[email protected].2/helper/mod.ts";
import * as vars from "https://deno.land/x/[email protected].2/variable/mod.ts";
import * as unknownutil from "https://deno.land/x/[email protected].0/mod.ts";
import type { Denops } from "https://deno.land/x/[email protected].3/mod.ts";
import * as batch from "https://deno.land/x/[email protected].3/batch/mod.ts";
import * as helper from "https://deno.land/x/[email protected].3/helper/mod.ts";
import * as vars from "https://deno.land/x/[email protected].3/variable/mod.ts";
import * as unknownutil from "https://deno.land/x/[email protected].1/mod.ts";
import {
Session as VimSession,
} from "https://deno.land/x/[email protected]/mod.ts";
import {
Dispatcher,
Session as NvimSession,
} from "https://deno.land/x/[email protected].0/mod.ts";
} from "https://deno.land/x/[email protected].1/mod.ts";
import * as editor from "./editor.ts";

const GUISE_VIM_ADDRESS = "GUISE_VIM_ADDRESS";
Expand Down

0 comments on commit 9ccd640

Please sign in to comment.