aboutsummaryrefslogtreecommitdiffhomepage
path: root/ide/preferences.mli
diff options
context:
space:
mode:
authorGravatar gmelquio <gmelquio@85f007b7-540e-0410-9357-904b9bb8a0f7>2010-12-14 13:44:13 +0000
committerGravatar gmelquio <gmelquio@85f007b7-540e-0410-9357-904b9bb8a0f7>2010-12-14 13:44:13 +0000
commited39b35b780c1fac9eb110f303014683e6640c01 (patch)
treea014575b204996d16f7bfc817920e0046d6e73a4 /ide/preferences.mli
parent90ceeebb707149808061232a9c0e8b2d2bde0800 (diff)
Add improved indenters that rely on the current proof state to choose the indentation depth.
Patch by Cedric Auger. These two indenters need to be exercised a bit to see if they are actually useful to users. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@13715 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'ide/preferences.mli')
-rw-r--r--ide/preferences.mli9
1 files changed, 9 insertions, 0 deletions
diff --git a/ide/preferences.mli b/ide/preferences.mli
index 41a581d57..723a771b0 100644
--- a/ide/preferences.mli
+++ b/ide/preferences.mli
@@ -55,6 +55,15 @@ type pref =
mutable lax_syntax : bool;
mutable vertical_tabs : bool;
mutable opposite_tabs : bool;
+(*
+ * for indentation
+ *)
+ mutable indent_module_factor : int;
+ mutable indent_section_factor : int;
+ mutable indent_saw_factor : int;
+ mutable indent_was_factor : int;
+ mutable indent_was_alinea : int;
+ mutable indent_tactic_was_mode : bool;
}
val save_pref : unit -> unit