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
4 changes: 2 additions & 2 deletions denops/askpass/cli.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env -S deno run --no-check --allow-env=ASKPASS_ADDRESS --allow-net=127.0.0.1
import { Session } from "https://deno.land/x/msgpack_rpc@v3.1.4/mod.ts";
import { writeAll } from "https://deno.land/std@0.128.0/io/mod.ts";
import { Session } from "https://deno.land/x/msgpack_rpc@v4.0.1/mod.ts";
import { writeAll } from "https://deno.land/std@0.224.0/io/mod.ts";
import { ASKPASS_ADDRESS } from "./const.ts";

const addr = Deno.env.get(ASKPASS_ADDRESS);
Expand Down
14 changes: 7 additions & 7 deletions denops/askpass/main.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import type { Denops } from "https://deno.land/x/denops_std@v3.1.4/mod.ts";
import * as path from "https://deno.land/std@0.128.0/path/mod.ts";
import * as batch from "https://deno.land/x/denops_std@v3.1.4/batch/mod.ts";
import * as vars from "https://deno.land/x/denops_std@v3.1.4/variable/mod.ts";
import * as fn from "https://deno.land/x/denops_std@v3.1.4/function/mod.ts";
import * as unknownutil from "https://deno.land/x/unknownutil@v2.0.0/mod.ts";
import { Session } from "https://deno.land/x/msgpack_rpc@v3.1.4/mod.ts";
import type { Denops } from "https://deno.land/x/denops_std@v6.5.1/mod.ts";
import * as path from "https://deno.land/std@0.224.0/path/mod.ts";
import * as batch from "https://deno.land/x/denops_std@v6.5.1/batch/mod.ts";
import * as vars from "https://deno.land/x/denops_std@v6.5.1/variable/mod.ts";
import * as fn from "https://deno.land/x/denops_std@v6.5.1/function/mod.ts";
import * as unknownutil from "https://deno.land/x/unknownutil@v3.18.1/mod.ts";
import { Session } from "https://deno.land/x/msgpack_rpc@v4.0.1/mod.ts";
import { ASKPASS_ADDRESS } from "./const.ts";

export async function main(denops: Denops): Promise<void> {
Expand Down