From 8846ae205897eb04673f093d7e1e13d9da7af6ae Mon Sep 17 00:00:00 2001 From: Pierre Courtieu Date: Wed, 14 Jan 2015 16:45:39 +0000 Subject: changed default indentation of match's cases. --- CHANGES | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) (limited to 'CHANGES') 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 -- cgit v1.2.3