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
|
-*- 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: fix indention of definitions:
Current behavior:
function foo bar1 bar2
bar3
Should be
function foo bar1 bar2
<>bar3
(<> length parameterized by coq-smie-after-bolp-indentation)
or
function foo bar1 bar2
bar3
depending on an option (coq-indent-box-style).
** Fix indentation of ;
Current behavior:
idtac ;
idtac.
but:
idtac; idtac;
idtac.
** dealing with several project files.
|