Skip to content
Snippets Groups Projects
Commit cd4706e8 authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

Add comment about `iSsrRewrite`.

parent 8b49eacf
No related branches found
No related tags found
No related merge requests found
......@@ -96,6 +96,14 @@ Tactic Notation "iEval" tactic(t) "in" constr(H) :=
Tactic Notation "iSimpl" := iEval simpl.
Tactic Notation "iSimpl" "in" constr(H) := iEval simpl in H.
(* It would be nice to also have an `iSsrRewrite`, however, for this we need to
pass arguments to Ssreflect's `rewrite` like `/= foo /bar` in Ltac, see:
https://sympa.inria.fr/sympa/arc/coq-club/2018-01/msg00000.html
PMP told me (= Robbert) in person that this is not possible today, but may be
possible in Ltac2. *)
(** * Context manipulation *)
Tactic Notation "iRename" constr(H1) "into" constr(H2) :=
eapply tac_rename with _ H1 H2 _ _; (* (i:=H1) (j:=H2) *)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment