Skip to content

Commit

Permalink
Merge pull request #1 from lambdalisue/main
Browse files Browse the repository at this point in the history
Vim でも動くように修正
  • Loading branch information
yukimemi committed Mar 20, 2021
2 parents e5deef4 + 05551c6 commit 602d9de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion denops/asyngrep/mod.ts
Expand Up @@ -88,7 +88,7 @@ start(async (vim) => {
const cmd = [tool.cmd, ...toolArg, pattern] as string[];
const cwd = (await vim.call("getcwd")) as string;
clog({ cmd, cwd });
const p = Deno.run({ cmd, cwd, stdout: "piped", stderr: "piped" });
const p = Deno.run({ cmd, cwd, stdin: "null", stdout: "piped", stderr: "piped" });

await vim.call("setqflist", [], "r");
await vim.call("setqflist", [], "a", {
Expand Down

0 comments on commit 602d9de

Please sign in to comment.