resolve conflicts
Dependencies
- [2]
S7CSVBHZresolve conflicts - [3]
26V2B2QHclarify a misleading test - [4]
T4FRZSYLdelete an ancient, unused file - [5]
KKQKPGCIresolve conflicts - [6]
RXMHAZ6Vresolve conflicts - [7]
TLOAPLBJadd a license - [8]
4SR3Z4Y3document the version of LÖVE I've been using - [9]
K2X6G75Zstart writing some tests for drawings - [10]
ZLJYLPOTMerge lines.love - [11]
CE4LZV4Tdrop last couple of manual tests - [12]
CRBLAWBOresolve conflicts - [13]
FHZ5AG3Mresolve conflicts - [14]
D2GCFTTTclean up repl functionality - [15]
OTIBCAUJlove2d scaffold - [16]
2CTN2IEFMerge lines.love - [17]
TVCPXAAUrename - [18]
VP5KC4XZMerge lines.love - [19]
656FM555bugfix: clear selection when clicking above or below lines - [20]
3PSFWAILMerge lines.love - [21]
XX7G2FFJintermingle freehand line drawings with text - [22]
TBTRYEBPMerge lines.love - [23]
VXORMHMEdelete experimental REPL - [24]
6LJZN727handle chords - [25]
ED4Z6ORCcleaner API for file-system access - [26]
N2NUGNN4include a brief reference enabling many useful apps - [27]
VHQCNMARseveral more modules - [28]
RSZD5A7Gforgot to add json.lua - [29]
FS2ITYYHrecord a known issue - [30]
ORKN6EOBMerge lines.love - [31]
BLWAYPKVextract a module - [32]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing - [33]
4YDBYBA4clean up memory leak experiments - [34]
BULPIBEGbeginnings of a module for the text editor - [35]
TOXPJJYYresolve conflicts - [36]
66X36NZNa little more prose describing manual_tests - [37]
QXXISTGEresolve conflicts - [38]
KKMFQDR4editing source code from within the app - [39]
AVTNUQYRbasic test-enabled framework - [40]
ORRSP7FVdeduce test names on failures - [41]
SGMA5JLEsave the list of tests in repo - [42]
R5QXEHUIsomebody stop me - [43]
LXTTOB33extract a couple of files - [44]
SYWQBIO5resolve conflicts - [45]
YXQOITYSMerge lines.love - [46]
OGUV4HSAremove some memory leaks from rendered fragments - [47]
3QNOKBFMbeginnings of a test harness - [48]
A4BSGS2CMerge lines.love - [49]
2L5MEZV3experiment: new edit namespace - [50]
KMSL74GAsupport selections in the source editor - [51]
ZS5IYZH5stop caching screen_bottom1 - [52]
73OCE2MCafter much struggle, a brute-force undo - [53]
JOPVPUSAediting source code from within the app - [54]
LWPFEZBIMerge lines.love - [55]
VHUNJHXBMerge lines.love - [56]
6VJTQKW7start supporting LÖVE v12 - [57]
MBAJPTDJresolve 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} - replacement in source_text_tests.lua at line 322
function test_click_below_all_lines()function test_click_below_final_line_of_file() - replacement in source_text_tests.lua at line 334
-- cursor doesn't movecheck_eq(Editor_state.cursor1.line, 1, 'cursor')-- cursor goes to bottomcheck_eq(Editor_state.cursor1.line, 1, 'cursor:line')check_eq(Editor_state.cursor1.pos, 4, 'cursor:pos')