Add wait
optional argument to hooks.editor
#1657
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
subprocess.Popen is used instead of os.system in order to spawn editor process in non-blocking manner.
See also: #1655
I think there are two ways to improve this patch (as @takluyver suggested):
wait == False
, sleep short time (0.1 sec) right after starting editor process to check if the editor exits with non-zero exit code.wait == False
so that message will not be printed in unexpected way (like after the nextIn[]
prompt). If we add sleep, error message can be printed only when editor exits immediately with an error.Please tell me if you want to implement these.