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