-
-
Notifications
You must be signed in to change notification settings - Fork 84
Filter / forgiving adverbs #1015
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Cross-linking: This came up as useful in combination with #1631. |
I do wonder if the error boundary approach is too fancy. Having modifiers which have long-range impacts on other modifiers feels slightly strange. Also, how does the data flow work? Does it flow out of the original modifier or the error boundary? And how would it interact with #756? and #2000? The advantage of the original proposal is that the semantics are very clear, and no special sauce needs to appear in the pipeline. In addition, for keyboard, the pipeline is not used at all, so they wouldn't be able to use these error boundaries |
I was just thinking that if one stage of the pipeline throws an error we check if the next stage can handle that. Nothing fancy. How this interact with future features and specifically the keyboard I have no idea. |
I thought you were planning to walk multiple stages, as you suggested it was an alternative to having to think bout whether we swallow multiple modifiers |
That is a possibility, but not necessary. |
I'm leaning back towards the original, more explicit approach, but maybe @josharian has some thoughts here. Fwiw jq does something more like the original approach, and the original approach feels more traditional: surrounding something explicitly in a try-catch block. If the only benefit is simplifying Talon grammar, then I don't think it's worth it. But if there are other tangible benefits then I could see it |
"funk"
) (default behaviour)"can funk"
)"can char"
)"only funk"
)"soft funk"
)Implementation
We can implement this with a new compositional modifier:
The modifier stage would just apply
modifier
, surrounded by atry
block. On success it would either use the original or modified depending ononSuccess
. On error it would either use original or return[]
depending ononError
Then Talon-side we could map spoken forms as follows:
Note that these spoken forms can't be used on their own; they are of the form
{user.cursorlessErrorSuppressor} <user.cursorlessModifier>
, and construct a composed modifierSee also #1006
Might be helpful to have a look at extension and talon side of
head
andtail
:Update
@AndreasArvidsson had the idea to have the modifier function more like an "error boundary". It wouldn't be an adverb that tries to run modifiers itself. Instead, it would just indicate error behaviour:
Then the pipeline, when a modifier throws an error, will scan onwards in the pipeline looking for an error boundary, and use that to determine what to do
The text was updated successfully, but these errors were encountered: