mirror of
https://github.com/vale981/tridactyl
synced 2025-03-06 10:01:39 -05:00
Fix trailing space in editor command
Why commit code when you can fix it twice?
This commit is contained in:
parent
50f7f3ed07
commit
73ab23152f
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ export async function getNativeMessengerVersion(): Promise<number> {
|
|||
|
||||
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)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue