blob: 2c4f13de862832be55ce9cc7f81862754f094099 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Script simulating a dialog between coqide and coqtop -ideslave
# Run it via fake_ide
#
# jumping outside the focused zone should signal an unfocus.
# first proof
ADD here { Goal True. }
ADD here1 { Proof. }
ADD { Qed. }
WAIT
EDIT_AT here1
EDIT_AT here
# fwd again
ADD here2 { Proof. }
ADD here3 { Qed. }
WAIT
EDIT_AT here2
# Fixing the proof
ADD { Proof. }
ADD { trivial. }
ADD { Qed. }
JOIN
|