resolve conflicts
Dependencies
- [2]
3VPHONXQMerge lines.love - [3]
CQVWNL4Mresolve conflicts - [4]
PATWQOHRregister a new add-on tool - [5]
GX5PD3CLconsistently schedule_save after all mutations - [6]
3GITFJZKfix a comment - [7]
TVCPXAAUrename - [8]
BULPIBEGbeginnings of a module for the text editor - [9]
YXQOITYSMerge lines.love - [10]
QMRQL2FOresolve conflicts - [11]
GVJEOWYQresolve conflicts - [12]
JOPVPUSAediting source code from within the app - [13]
LXTTOB33extract a couple of files - [14]
R2ASHK5Cfix a bad merge - [15]
WJBZZQE4fold together two largely similar cases - [16]
OTIBCAUJlove2d scaffold - [17]
ONHKBLLCMerge lines.love - [18]
73OCE2MCafter much struggle, a brute-force undo - [19]
TOXPJJYYresolve conflicts - [20]
RSZD5A7Gforgot to add json.lua - [21]
3QNOKBFMbeginnings of a test harness - [22]
KKMFQDR4editing source code from within the app - [23]
MBAJPTDJresolve conflicts - [24]
TFUNIT6Mresolve conflicts - [25]
AVTNUQYRbasic test-enabled framework - [26]
2L5MEZV3experiment: new edit namespace - [27]
D2GCFTTTclean up repl functionality - [28]
5SM6DRHKport inscript's bugfix to source editor - [29]
OI4FPFINsupport drawings in the source editor - [30]
OGUV4HSAremove some memory leaks from rendered fragments - [31]
D4B52CQ2Merge lines.love - [32]
T4FRZSYLdelete an ancient, unused file - [33]
3PSFWAILMerge lines.love - [34]
2CTN2IEFMerge lines.love - [35]
TBTRYEBPMerge lines.love - [36]
4YDBYBA4clean up memory leak experiments - [37]
MTJEVRJRadd state arg to a few functions - [38]
MD3W5IRAnew fork: rip out drawing support - [39]
VP5KC4XZMerge lines.love - [40]
R5QXEHUIsomebody stop me - [41]
VXORMHMEdelete experimental REPL - [42]
SGMA5JLEsave the list of tests in repo - [43]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing - [44]
FPY4LO2Wmake a few names consistent with snake_case - [45]
KKQKPGCIresolve conflicts - [46]
3XNFQDDNMerge lines.love - [47]
6D5MOJS4allow buttons to interrupt events - [48]
34BZ5ZKNMerge lines.love - [49]
7YGYHOEOMerge lines.love - [50]
SBS2F7GRlink to export tool - [51]
VTCPDL3Aresolve conflicts - [52]
RXMHAZ6Vresolve conflicts - [53]
VHQCNMARseveral more modules - [54]
LF7BWEG4group all editor globals - [55]
PTDO2SOTadd state arg to schedule_save - [56]
REAIVN7WMerge lines.love - [57]
ORKN6EOBMerge lines.love - [58]
4SR3Z4Y3document the version of LÖVE I've been using - [59]
ZLJYLPOTMerge lines.love - [60]
LWPFEZBIMerge lines.love - [61]
KMSL74GAsupport selections in the source editor - [62]
ED4Z6ORCcleaner API for file-system access - [63]
5YJBJO37mention a new tool - [64]
CE4LZV4Tdrop last couple of manual tests - [65]
66X36NZNa little more prose describing manual_tests - [66]
WLJCIXYMadd state arg to a few functions - [67]
UHB4GARJleft/right margin -> left/right coordinates - [68]
VHUNJHXBMerge lines.love - [69]
K2X6G75Zstart writing some tests for drawings - [70]
N2NUGNN4include a brief reference enabling many useful apps - [71]
6LJZN727handle chords - [72]
BLWAYPKVextract a module - [73]
LNUHQOGHstart passing in Editor_state explicitly - [74]
XX7G2FFJintermingle freehand line drawings with text - [75]
K6DTOGOQflip return value of button handlers - [76]
D4FEFHQCflesh out Readme - [77]
6VJTQKW7start supporting LÖVE v12 - [78]
CRBLAWBOresolve conflicts - [79]
TYLURRX3resolve conflicts - [80]
ZS5IYZH5stop caching screen_bottom1 - [81]
FS2ITYYHrecord a known issue - [82]
HWTLXESCMerge lines.love - [83]
GIG6OV3Gport keyboard layout handling to source editor - [84]
MGJZHZC4Merge lines.love - [85]
TLOAPLBJadd a license - [86]
WKXJNESIresolve conflicts
Change contents
- file deletion: source_text.lua source_text.lua
-- The modifiers didn't change the key. Handle it in keychord_press.schedule_save(State)schedule_save(State)schedule_save(State)schedule_save(State)--== shortcuts that move the cursorelseif chord == 'left' thenText.left(State)elseif chord == 'delete' thenelseif chord == 'backspace' thenelseif chord == 'tab' thenlocal before = snapshot(State, State.cursor1.line)returnelse-- Key mutated by the keyboard layout. Continue below.endend - file deletion: source_edit.lua source_edit.lua
schedule_save(State)schedule_save(State)record_undo_event(State, {before=before, after=snapshot(State, before_line, State.cursor1.line)})schedule_save(State)elseend,}) - replacement in source_text.lua at line 201
-- The modifiers didn't change the key. Handle it in keychord_pressed.-- The modifiers didn't change the key. Handle it in keychord_press. - edit in source_text.lua at line 233
State.selection1 = {} - edit in source_text.lua at line 236
schedule_save(State) - edit in source_text.lua at line 237
schedule_save(State) - edit in source_text.lua at line 247
record_undo_event(State, {before=before, after=snapshot(State, State.cursor1.line)}) - edit in source_text.lua at line 249
record_undo_event(State, {before=before, after=snapshot(State, State.cursor1.line)}) - edit in source_text.lua at line 295
record_undo_event(State, {before=before, after=snapshot(State, State.cursor1.line)}) - edit in source_text.lua at line 297
record_undo_event(State, {before=before, after=snapshot(State, State.cursor1.line)}) - edit in source_text.lua at line 329
schedule_save(State) - edit in source_text.lua at line 330
schedule_save(State) - edit in source_edit.lua at line 192
schedule_save(State) - edit in source_edit.lua at line 193
schedule_save(State) - edit in source_edit.lua at line 302
schedule_save(State) - edit in source_edit.lua at line 306
schedule_save(State) - edit in source_edit.lua at line 494
record_undo_event(State, {before=before, after=snapshot(State, before_line, State.cursor1.line)}) - edit in source_edit.lua at line 496
record_undo_event(State, {before=before, after=snapshot(State, before_line, State.cursor1.line)}) - edit in edit.lua at line 368
schedule_save(State) - replacement in edit.lua at line 369
-- dispatch to textschedule_save(State) - edit in edit.lua at line 448[7.12430]→[3.157:157](∅→∅),[7.14368]→[5.679:781](∅→∅),[7.14368]→[5.679:781](∅→∅),[7.8797]→[5.653:678](∅→∅),[7.8797]→[5.653:678](∅→∅),[7.935]→[5.608:652](∅→∅),[7.935]→[5.608:652](∅→∅)
record_undo_event(State, {before=before, after=snapshot(State, before_line, State.cursor1.line)})schedule_save(State)schedule_save(State) - resolve order conflict in edit.lua at line 448[7.12430]
- edit in README.md at line 78
* https://codeberg.org/eril/lines2html.love provides the option to exportjust the drawings to a directory. Also provides a CLI, which should be morenatural for many people. - resolve order conflict in README.md at line 78