-
Notifications
You must be signed in to change notification settings - Fork 50
Open
Description
I'm curious to the possibility of having a feature where the Lsp can fetch the tactics invoked by the auto/eauto tactic and replace the auto tactic with the tactics. Here is an example.
Theorem simpl : forall n : nat, n + 0 = n.
Proof. info_auto. Qed.
info_auto outputs this to the messages
(* info auto: *)
intro.
simple apply eq_sym ; trivial (in core).
The Lsp is able to replace info_auto with
Theorem simpl : forall n : nat, n + 0 = n.
Proof. intro. simpl. apply eq_sym. apply plus_n_O. Qed.
Is this possible?
Metadata
Metadata
Assignees
Labels
No labels