You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One of the VSCode just plugins allows the user to run individual recipes from a justfile which is being edited. This seems potentially useful, although it would require allowing the user to pass any arguments required by the recipe.
We can use the dump method of just to get a list of recipes:
just --unstable --dump --dump-format json --justfile examples/kitchen-sink.just
Adding this feature to Sublime will use Input Handlers. Here's a video on how they work, with a bare bones example in this Forum thread. More discussion in this other thread. Good community docs here.
The text was updated successfully, but these errors were encountered:
One of the VSCode just plugins allows the user to run individual recipes from a justfile which is being edited. This seems potentially useful, although it would require allowing the user to pass any arguments required by the recipe.
We can use the dump method of
just
to get a list of recipes:Adding this feature to Sublime will use Input Handlers. Here's a video on how they work, with a bare bones example in this Forum thread. More discussion in this other thread. Good community docs here.
The text was updated successfully, but these errors were encountered: