Closed SkySkimmer closed 1 year ago
Do the standard trick of stuffing
Module Coq. Module plugins. Module Tauto. Ltac2 intuition_solver := idtac. End ...
(or whatever the actual full path is) in some file that you Require Import
, then overwrite it as Ltac Coq.plugins.Tauto.intuition_solver ::= ...
. Coq will refuse to shadow absolute names that exist, so this will be a no-op if the name does not exist (overwriting the unused tactic), but will have the desired effect if the name does exist.
Tactic Notation "intuition" := (intuition auto with whatever)
may work, I'll try later.
It doesn't work, I guess because intuition is called through something else.
compat seems troublesome