mirror of
https://github.com/vale981/tridactyl
synced 2025-03-06 01:51:40 -05:00
Fix trailing space in editor command
Why commit code when you can fix it twice?
This commit is contained in:
parent
ec13fa5dec
commit
0156fc233f
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