diff options
| author | filliatr | 2003-02-24 16:52:14 +0000 |
|---|---|---|
| committer | filliatr | 2003-02-24 16:52:14 +0000 |
| commit | 3ae01fb7081658f9c2efaa24f4a7f69925dd6e95 (patch) | |
| tree | dc7732e22471a3dd4baf0335f96694a2a4350b24 /ide/preferences.ml | |
| parent | edca82b2ff6721b69c49533c40aadf10e5987816 (diff) | |
aide contextuelle / menus compilation + print + export
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@3698 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'ide/preferences.ml')
| -rw-r--r-- | ide/preferences.ml | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/ide/preferences.ml b/ide/preferences.ml index 2702854e2c..79384ec166 100644 --- a/ide/preferences.ml +++ b/ide/preferences.ml @@ -1,6 +1,7 @@ type pref = { mutable cmd_coqc : string; + mutable cmd_make : string; mutable cmd_coqmakefile : string; mutable cmd_coqdoc : string; @@ -11,21 +12,25 @@ type pref = mutable auto_save_delay : float; mutable auto_save_name : string*string; - mutable automatic_tactics : string * string list; + mutable automatic_tactics : (string * string) list; mutable cmd_print : string; mutable modifier_for_navigation : Gdk.Tags.modifier list; mutable modifier_for_templates : Gdk.Tags.modifier list; + mutable cmd_browse : string * string; + mutable doc_url : string; + mutable library_url : string; } let (current:pref) = { cmd_coqc = "coqc"; - cmd_coqmakefile = "coqmakefile"; - cmd_coqdoc = "coqdoc"; + cmd_make = "make"; + cmd_coqmakefile = "coq_makefile -o Makefile *.v"; + cmd_coqdoc = "coqdoc -q -g"; cmd_print = "lpr"; @@ -40,4 +45,9 @@ let (current:pref) = modifier_for_navigation = [`CONTROL; `MOD1]; modifier_for_templates = [`MOD1]; - } + + cmd_browse = "netscape -remote \"OpenURL(", ")\""; + + doc_url = "http://coq.inria.fr/doc/"; + library_url = "http://coq.inria.fr/library/"; + } |
