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
I have a custom notation x:term "rewrite_by" c:convSeq which takes a term x and rewrites it by conv tactic c. I would like to have a bubble showing the tactic state right after rewrite_by similarly how there is a bubble right after by when you enter tactic mode.
How flexible would this API need to be for you? Is it overwhelming to have some kind of custom handler that lets you place them precisely where you want them for a given syntax kind? Or perhaps a set of kind-keyword pairs would be enough?
So far I have these notations where I have a custom by and it would be nice to have a bubble after it
notation term "rewrite_by" convSeq : term
notation "derive_random_approx" term "by" convSeq : term
notation "approx" ident bracketedBinder* ":=" term "by" tacticSeq : command
I have a custom notation
x:term "rewrite_by" c:convSeq
which takes a termx
and rewrites it by conv tacticc
. I would like to have a bubble showing the tactic state right afterrewrite_by
similarly how there is a bubble right afterby
when you enter tactic mode.For example here
there is a bubble(indicated by ∘) after
simp
but no bubble afterrewrite_by
.I would like to have
The text was updated successfully, but these errors were encountered: