aboutsummaryrefslogtreecommitdiff
path: root/ide/preferences.ml
diff options
context:
space:
mode:
Diffstat (limited to 'ide/preferences.ml')
-rw-r--r--ide/preferences.ml13
1 files changed, 13 insertions, 0 deletions
diff --git a/ide/preferences.ml b/ide/preferences.ml
new file mode 100644
index 0000000000..6cf6e9754a
--- /dev/null
+++ b/ide/preferences.ml
@@ -0,0 +1,13 @@
+type pref =
+ {
+ mutable cmd_coqc : string;
+ mutable cmd_coqmakefile : string;
+ mutable cmd_coqdoc : string;
+ mutable global_auto_revert : bool;
+ mutable global_auto_revert_delay : float;
+ mutable auto_save : bool;
+ mutable auto_save_delay : float;
+ mutable automatic_tactics : string * string list;
+ mutable cmd_print : string
+
+ }