aboutsummaryrefslogtreecommitdiffhomepage
path: root/CHANGES
diff options
context:
space:
mode:
authorGravatar Pierre Courtieu <courtieu@lri.fr>2015-01-14 16:45:39 +0000
committerGravatar Pierre Courtieu <courtieu@lri.fr>2015-01-14 16:45:39 +0000
commit8846ae205897eb04673f093d7e1e13d9da7af6ae (patch)
tree9f92e38faf638dfe4c2131880d063d32fa80f136 /CHANGES
parent351eae29f2da9644cae5ba1fc3a1c36d7bf9c803 (diff)
changed default indentation of match's cases.
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES25
1 files changed, 18 insertions, 7 deletions
diff --git a/CHANGES b/CHANGES
index cdf312c0..8ac72cf9 100644
--- a/CHANGES
+++ b/CHANGES
@@ -47,16 +47,27 @@ the CVS ChangeLog and PG Trac, http://proofgeneral.inf.ed.ac.uk/trac.
*** Default indentation of forall and exists is not boxed anymore
For instance, this is now indented like this:
- Lemma foo: forall x y,
- x = 0 -> ... . (* like if forall x y, was on its own line *)
-
+ Lemma foo: forall x y,
+ x = 0 -> ... .
instead of:
-
- Lemma foo: forall x y,
- x = 0 -> ... .
-
+ Lemma foo: forall x y,
+ x = 0 -> ... .
do this: (setq coq-indent-box-style t) to bring the box style back.
+*** Default indentation cases of "match with" are now indented by 2 instead of 4.
+ "|" is indented by zero:
+
+ match n with
+ 0 => ...
+ | S n => ...
+ end
+ instead of:
+ match n with
+ 0 => ...
+ | S n => ...
+ end
+ do this: (setq coq-match-indent 4) to bring old behaviour back.
+
*** Support for bullets, braces and Grab Existential Variables for Prooftree.
*** Support for _Coqproject files