sminez / ad

an adaptable text editor
https://crates.io/crates/ad-editor
MIT License
264 stars 10 forks source link

Move over to using duct for handling running child processes #20

Closed sminez closed 1 month ago

sminez commented 2 months ago

The current implementation of handling running child processes only makes use of the standard library and works for the most part, but it has several gotchas that can lock up the UI depending on what commands you try to run. Some of that I am tackling elsewhere but one thing that would be nice is to make use of duct for running the processes themselves so that common gotchas are handled for us.