We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10e8dd9 commit cea6b6bCopy full SHA for cea6b6b
denops/guise/main.ts
@@ -53,10 +53,13 @@ export async function main(denops: Denops): Promise<void> {
53
"--headless",
54
];
55
}
56
+ const progpath = denops.meta.platform === "windows"
57
+ ? `"${config.progpath}"`
58
+ : `'${config.progpath}'`;
59
await vars.e.set(
60
denops,
61
"EDITOR",
- `'${config.progpath}' ${args.join(" ")}`,
62
+ `${progpath} ${args.join(" ")}`,
63
);
64
65
0 commit comments