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