diff --git a/src/native_background.ts b/src/native_background.ts index a13d14c0..051b2959 100644 --- a/src/native_background.ts +++ b/src/native_background.ts @@ -48,7 +48,7 @@ export async function getNativeMessengerVersion(): Promise { export async function editor(file: string, content?: string) { if (content !== undefined) await write(file, content) - await run(config.get("editorcmd") + file) + await run(config.get("editorcmd") + " " + file) return await read(file) }