Open
Conversation
30f32a9 to
6412b87
Compare
6412b87 to
8b1fee4
Compare
Contributor
|
Could be useful, although one potential problem. I'm not sure that the run count would be unique to a given code buffer. If you run a different code buffer to the one containing your example code and then switch that your example code buffer with the first one still running, then when you press run it will register >1 for the count. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR introduces a
run_countvar that shows how many reruns (Alt+r) have happends after full stop (Alt+s). This var is available for user code which can use its value (distinguishing between run_count == 1 - first run and runt_count >1 - subsequent runs).Example:
One application of this is to be able to "control effects dynamically", as discussed in this thread and is based on the idea of a workaround proposed here.
With
run_countavailable, the problem of controlling FX is solved as follows