Skip to content

Commit a92e764

Browse files
authored
fix: detach open command execution (#80)
This commit simply switches `os.execute` with `vim.fn.jobstart` with `detach` set to `true`, making the editor available after opening the problems' url allowing you to edit, while the browser is running. The `detach` option keeps the browser open after the editor shuts down. It is not the default behavior (which would make the browser shut down with the editor, I find the introduced behavior to be more appropriate). NOTE: This commit has been tested only on Linux; but I don't suppose there would be any meaningful difference.
1 parent 765cc76 commit a92e764

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/leetcode/command/init.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ function cmd.open()
313313
command = string.format("start \"\" \"%s\"", q.cache.link)
314314
end
315315

316-
os.execute(command)
316+
vim.fn.jobstart(command, { detach = true })
317317
end
318318
end
319319

0 commit comments

Comments
 (0)