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