X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2Fmatita.ml;fp=matita%2Fmatita.ml;h=a23558aa85e0ff83ca12707b4c732a4ba6db829c;hb=4c57041471d4f33da4e449fae304c62e790b4789;hp=ce9280dcdc229b6ceda080a4af4e55b12dca7858;hpb=b36c499a9234a3dc0abd5fb8d418975966f179e7;p=helm.git diff --git a/matita/matita.ml b/matita/matita.ml index ce9280dcd..a23558aa8 100644 --- a/matita/matita.ml +++ b/matita/matita.ml @@ -214,28 +214,30 @@ let _ = ); addDebugSeparator (); *) -(* ZACK: moved to a check box menu item in the View menu addDebugItem "disable high level pretty printer" (fun _ -> CicMetaSubst.use_low_level_ppterm_in_context := true); addDebugItem "enable high level pretty printer" (fun _ -> CicMetaSubst.use_low_level_ppterm_in_context := false); -*) +(* ZACK moved to the View menu addDebugItem "disable all (pretty printing) notations" (fun _ -> CicNotation.set_active_notations []); addDebugItem "enable all (pretty printing) notations" (fun _ -> CicNotation.set_active_notations (List.map fst (CicNotation.get_all_notations ()))); +*) addDebugSeparator (); addDebugItem "enable multiple disambiguation passes (default)" (fun _ -> GrafiteDisambiguator.only_one_pass := false); addDebugItem "enable only one disambiguation pass" (fun _ -> GrafiteDisambiguator.only_one_pass := true); addDebugSeparator (); +(* ZACK moved to the View menu addDebugItem "enable coercions hiding" (fun _ -> Acic2content.hide_coercions := true); addDebugItem "disable coercions hiding" (fun _ -> Acic2content.hide_coercions := false); +*) addDebugItem "show coercions graph" (fun _ -> let c = MatitaMathView.cicBrowser () in c#load (`About `Coercions));