resolve conflicts
Dependencies
- [2]
QSHQIVF3resolve conflicts - [3]
QIR3VBYIresolve conflicts - [4]
ORKN6EOBMerge lines.love - [5]
VP5KC4XZMerge lines.love - [6]
KJLZCK2Rresolve conflicts - [7]
RSZD5A7Gforgot to add json.lua - [8]
CRBLAWBOresolve conflicts - [9]
SYWQBIO5resolve conflicts - [10]
DKL7KWKOresolve conflict - [11]
ECBDENZ4Merge text.love - [12]
LXTTOB33extract a couple of files - [13]
KKMFQDR4editing source code from within the app - [14]
VLTU33KWresolve conflicts - [15]
AVTNUQYRbasic test-enabled framework - [16]
2CTN2IEFMerge lines.love - [17]
2CFLXLIEMerge text.love - [18]
7LXXQBNEresolve conflicts - [19]
FHZ5AG3Mresolve conflicts - [20]
BULPIBEGbeginnings of a module for the text editor - [21]
QXXISTGEresolve conflicts - [22]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing - [23]
KQ22RW43resolve conflicts - [24]
LWPFEZBIMerge lines.love - [25]
4Y2QDDAZresolve conflicts - [26]
TOXPJJYYresolve conflicts - [27]
FS2ITYYHrecord a known issue - [28]
XX7G2FFJintermingle freehand line drawings with text - [29]
2L5MEZV3experiment: new edit namespace - [30]
JOPVPUSAediting source code from within the app - [31]
VXORMHMEdelete experimental REPL - [32]
YXQOITYSMerge lines.love - [33]
K2X6G75Zstart writing some tests for drawings - [34]
6VJTQKW7start supporting LÖVE v12 - [35]
OGUV4HSAremove some memory leaks from rendered fragments - [36]
R6MNUXDJpijul bug - [37]
BLWAYPKVextract a module - [38]
3QNOKBFMbeginnings of a test harness - [39]
66X36NZNa little more prose describing manual_tests - [40]
ZLJYLPOTMerge lines.love - [41]
RXMHAZ6Vresolve conflicts - [42]
3PSFWAILMerge lines.love - [43]
A4BSGS2CMerge lines.love - [44]
VXRYVZ74Merge text.love - [45]
73OCE2MCafter much struggle, a brute-force undo - [46]
VHUNJHXBMerge lines.love - [47]
CZ6X73VYmerge bugfix - [48]
CAG7PP5YMerge text.love - [49]
D2GCFTTTclean up repl functionality - [50]
ED4Z6ORCcleaner API for file-system access - [51]
4SR3Z4Y3document the version of LÖVE I've been using - [52]
MBAJPTDJresolve conflicts - [53]
6LJZN727handle chords - [54]
SLMSBVJWresolve conflicts - [55]
N2NUGNN4include a brief reference enabling many useful apps - [56]
TLOAPLBJadd a license - [57]
4YDBYBA4clean up memory leak experiments - [58]
CE4LZV4Tdrop last couple of manual tests - [59]
TBTRYEBPMerge lines.love - [60]
KMSL74GAsupport selections in the source editor - [61]
OTIBCAUJlove2d scaffold - [62]
TVCPXAAUrename - [63]
VHQCNMARseveral more modules - [64]
5ML5VGOCMerge text.love - [65]
KKQKPGCIresolve conflicts - [66]
PJ5PQAQErecord support for multiple versions - [67]
T4FRZSYLdelete an ancient, unused file - [68]
R5QXEHUIsomebody stop me - [69]
36Z442IVback to commit 8123959e52f without code editing - [70]
SGMA5JLEsave the list of tests in repo
Change contents
- file deletion: source_text_tests.lua source_text_tests.lua
function test_click_below_final_line_of_file()-- cursor goes to bottomcheck_eq(Editor_state.cursor1.line, 1, 'cursor:line')check_eq(Editor_state.cursor1.pos, 4, 'cursor:pos')-- selection remains emptycheck_nil(Editor_state.selection1.line, 'selection is empty to avoid perturbing future edits')-- display one lineApp.screen.init{width=50, height=80}Editor_state = edit.initialize_test_state()Editor_state.lines = load_array{'abc'}Text.redraw_all(Editor_state)Editor_state.cursor1 = {line=1, pos=1}Editor_state.screen_top1 = {line=1, pos=1}