-
|
I'm a little unsure of how an ergonomic workflow using overseer looks - currently, after starting my editor, I use
Thus my questions are:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
https://github.com/stevearc/overseer.nvim/blob/master/doc/recipes.md#restart-last-task |
Beta Was this translation helpful? Give feedback.
-
Interesting...so the task already exists and is in
Tasks do have IDs and you can use that to filter/find them, but if you're talking about attaching your own ID to a task when it starts, you can put that into the
Look at create_task_output_view.
If you configure tasks to run sequentially, then restarting the first one should restart and run all the sequential tasks. If you have created two ad-hoc tasks using |
Beta Was this translation helpful? Give feedback.
Interesting...so the task already exists and is in
PENDINGstate? Or you're saying this task was created ad-hoc usingOverseerShelland it ran to completion, but now you want to re-start it? There is no built-in command for doing this, other than:OverseeerTaskAction-> select task -> start as you've already found. You could build something for this yourself. You can use this recipe as a starting point.