-
Notifications
You must be signed in to change notification settings - Fork 34
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
Proofs that don't start with "Proof." are not recognized #125
Comments
The problem is tactics are currently only highlighted when they're in a
1 or 3 are the easiest options but I'm open to 2 if you think this is a common enough/idiomatic use case. |
Somewhat related: #43. |
I'm fine with not fixing it if it's not easy. I just wanted to mention it because it seems somewhat common, but I'm not at all fond of that style. |
When I next get some time I'll experiment with how hard it is to make a best-effort attempt at something like option 2. |
As if living with the rooster was not hard enough already, #[global]
Program Instance unit_eqdec : EqDec unit eq := fun x y => in_left.
Next Obligation.
Proof.
do 2 match goal with [ x : () |- _ ] => destruct x end.
reflexivity.
Qed. |
Compare how
cbn
is highlighted in this example:The text was updated successfully, but these errors were encountered: