-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"; | ||
|