Skip to content

Commit 10e8dd9

Browse files
committed
🐛 Enclose progpath with single quotes
1 parent 2b15e48 commit 10e8dd9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

denops/guise/main.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,11 @@ export async function main(denops: Denops): Promise<void> {
5353
"--headless",
5454
];
5555
}
56-
await vars.e.set(denops, "EDITOR", `${config.progpath} ${args.join(" ")}`);
56+
await vars.e.set(
57+
denops,
58+
"EDITOR",
59+
`'${config.progpath}' ${args.join(" ")}`,
60+
);
5761
}
5862
}
5963

0 commit comments

Comments
 (0)