aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq/TODO
blob: 09140d7785a2e5551d1662d2ee31be414b607d38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
-*- outline -*-  

** important: deal with different levels of the "in" keyword

let x := y in      : expression
eval x in y        : commande
unfold x in y      : tactique


** important: Have an option for indenting style:

Current behavior:

Lemma foo: forall x,
            f x = 0.

and: 

functionfoo bar1 bar2
    	    bar3


Commonly used behavior:

Lemma foo: forall x,
  f x = 0.

and

functionfoo bar1 bar2
  bar3


** (less important) Indent correctly this:

Proof with auto.
           intro.

instead of:

Proof with auto.
  intro.


Workaroud for the moment, write the script like this:

Proof with
  auto.
  intro.