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]
WKXJNESIresolve conflicts - [8]
YXQOITYSMerge lines.love - [9]
TFUNIT6Mresolve conflicts - [10]
CE4LZV4Tdrop last couple of manual tests - [11]
MGJZHZC4Merge lines.love - [12]
7YGYHOEOMerge lines.love - [13]
6LJZN727handle chords - [14]
LNUHQOGHstart passing in Editor_state explicitly - [15]
FS2ITYYHrecord a known issue - [16]
MTJEVRJRadd state arg to a few functions - [17]
TVCPXAAUrename - [18]
KMSL74GAsupport selections in the source editor - [19]
R5QXEHUIsomebody stop me - [20]
R2ASHK5Cfix a bad merge - [21]
D2GCFTTTclean up repl functionality - [22]
XX7G2FFJintermingle freehand line drawings with text - [23]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing - [24]
OTIBCAUJlove2d scaffold - [25]
QMRQL2FOresolve conflicts - [26]
TYLURRX3resolve conflicts - [27]
LF7BWEG4group all editor globals - [28]
JOPVPUSAediting source code from within the app - [29]
MD3W5IRAnew fork: rip out drawing support - [30]
AVTNUQYRbasic test-enabled framework - [31]
WJBZZQE4fold together two largely similar cases - [32]
FPY4LO2Wmake a few names consistent with snake_case - [33]
KKQKPGCIresolve conflicts - [34]
66X36NZNa little more prose describing manual_tests - [35]
5YJBJO37mention a new tool - [36]
BULPIBEGbeginnings of a module for the text editor - [37]
REAIVN7WMerge lines.love - [38]
34BZ5ZKNMerge lines.love - [39]
ONHKBLLCMerge lines.love - [40]
3PSFWAILMerge lines.love - [41]
ORKN6EOBMerge lines.love - [42]
TLOAPLBJadd a license - [43]
VXORMHMEdelete experimental REPL - [44]
2L5MEZV3experiment: new edit namespace - [45]
LXTTOB33extract a couple of files - [46]
6D5MOJS4allow buttons to interrupt events - [47]
WLJCIXYMadd state arg to a few functions - [48]
SBS2F7GRlink to export tool - [49]
ZLJYLPOTMerge lines.love - [50]
3QNOKBFMbeginnings of a test harness - [51]
ED4Z6ORCcleaner API for file-system access - [52]
MBAJPTDJresolve conflicts - [53]
73OCE2MCafter much struggle, a brute-force undo - [54]
OI4FPFINsupport drawings in the source editor - [55]
T4FRZSYLdelete an ancient, unused file - [56]
UHB4GARJleft/right margin -> left/right coordinates - [57]
CRBLAWBOresolve conflicts - [58]
OGUV4HSAremove some memory leaks from rendered fragments - [59]
VTCPDL3Aresolve conflicts - [60]
D4FEFHQCflesh out Readme - [61]
SGMA5JLEsave the list of tests in repo - [62]
K2X6G75Zstart writing some tests for drawings - [63]
KKMFQDR4editing source code from within the app - [64]
ZS5IYZH5stop caching screen_bottom1 - [65]
2CTN2IEFMerge lines.love - [66]
GVJEOWYQresolve conflicts - [67]
RXMHAZ6Vresolve conflicts - [68]
5SM6DRHKport inscript's bugfix to source editor - [69]
PTDO2SOTadd state arg to schedule_save - [70]
BLWAYPKVextract a module - [71]
3XNFQDDNMerge lines.love - [72]
TOXPJJYYresolve conflicts - [73]
HWTLXESCMerge lines.love - [74]
4YDBYBA4clean up memory leak experiments - [75]
D4B52CQ2Merge lines.love - [76]
VHQCNMARseveral more modules - [77]
4SR3Z4Y3document the version of LÖVE I've been using - [78]
VP5KC4XZMerge lines.love - [79]
LWPFEZBIMerge lines.love - [80]
6VJTQKW7start supporting LÖVE v12 - [81]
TBTRYEBPMerge lines.love - [82]
GIG6OV3Gport keyboard layout handling to source editor - [83]
VHUNJHXBMerge lines.love - [84]
K6DTOGOQflip return value of button handlers - [85]
RSZD5A7Gforgot to add json.lua - [86]
N2NUGNN4include a brief reference enabling many useful apps
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