resolve conflicts
Dependencies
- [2]
ULEQ62Z7resolve conflicts - [3]
VTCPDL3Aresolve conflicts - [4]
34BZ5ZKNMerge lines.love - [5]
SGMA5JLEsave the list of tests in repo - [6]
Q6RXCILQMerge text.love - [7]
PJ5PQAQErecord support for multiple versions - [8]
VXRYVZ74Merge text.love - [9]
REAIVN7WMerge lines.love - [10]
OGUV4HSAremove some memory leaks from rendered fragments - [11]
VP5KC4XZMerge lines.love - [12]
LXTTOB33extract a couple of files - [13]
TVCPXAAUrename - [14]
6VJTQKW7start supporting LÖVE v12 - [15]
KMSL74GAsupport selections in the source editor - [16]
C3GUE45IMerge text.love - [17]
36Z442IVback to commit 8123959e52f without code editing - [18]
2L5MEZV3experiment: new edit namespace - [19]
3G723RV5Merge text.love - [20]
6LJZN727handle chords - [21]
4SR3Z4Y3document the version of LÖVE I've been using - [22]
ZLJYLPOTMerge lines.love - [23]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing - [24]
XX7G2FFJintermingle freehand line drawings with text - [25]
FS2ITYYHrecord a known issue - [26]
BLWAYPKVextract a module - [27]
N2NUGNN4include a brief reference enabling many useful apps - [28]
CAG7PP5YMerge text.love - [29]
RU4HIK43Merge lines.love - [30]
FM5LDKGTMerge text.love - [31]
3QNOKBFMbeginnings of a test harness - [32]
66X36NZNa little more prose describing manual_tests - [33]
AVTNUQYRbasic test-enabled framework - [34]
KKMFQDR4editing source code from within the app - [35]
YF2ATH2QMerge lines.love - [36]
2CFLXLIEMerge text.love - [37]
4YDBYBA4clean up memory leak experiments - [38]
JOPVPUSAediting source code from within the app - [39]
QD4LOFQRMerge text.love - [40]
3PSFWAILMerge lines.love - [41]
2TQUKHBCMerge lines.love - [42]
R5QXEHUIsomebody stop me - [43]
M5JXTW56Merge text.love - [44]
D2TYFYG2Merge text.love - [45]
BULPIBEGbeginnings of a module for the text editor - [46]
2CTN2IEFMerge lines.love - [47]
73OCE2MCafter much struggle, a brute-force undo - [48]
VHQCNMARseveral more modules - [49]
ED4Z6ORCcleaner API for file-system access - [50]
TBTRYEBPMerge lines.love - [51]
KKQKPGCIresolve conflicts - [52]
K2X6G75Zstart writing some tests for drawings - [53]
D2GCFTTTclean up repl functionality - [54]
OTIBCAUJlove2d scaffold - [55]
VHUNJHXBMerge lines.love - [56]
VLTU33KWresolve conflicts - [57]
T4FRZSYLdelete an ancient, unused file - [58]
CE4LZV4Tdrop last couple of manual tests - [59]
RSZD5A7Gforgot to add json.lua - [60]
VXORMHMEdelete experimental REPL - [61]
ORKN6EOBMerge lines.love - [62]
TLOAPLBJadd a license - [63]
LWPFEZBIMerge lines.love
Change contents
- file deletion: source_text.lua source_text.lua
if App.any_modifier_down() thenif App.key_down(t) then-- The modifiers didn't change the key. Handle it in keychord_pressed.returnelse-- Key mutated by the keyboard layout. Continue below.endendlocal before = snapshot(State, State.cursor1.line)--? print(State.screen_top1.line, State.screen_top1.pos, State.cursor1.line, State.cursor1.pos, State.screen_bottom1.line, State.screen_bottom1.pos)Text.insert_at_cursor(State, t)if State.cursor_y > App.screen.height - State.line_height thenText.populate_screen_line_starting_pos(State, State.cursor1.line)Text.snap_cursor_to_bottom_of_screen(State, State.left, State.right)endrecord_undo_event(State, {before=before, after=snapshot(State, State.cursor1.line)})endfunction Text.insert_at_cursor(State, t)