resolve conflicts
Dependencies
- [2]
6Z6WH62Wresolve conflicts - [3]
GIG6OV3Gport keyboard layout handling to source editor - [4]
VP5KC4XZMerge lines.love - [5]
2CTN2IEFMerge lines.love - [6]
TLOAPLBJadd a license - [7]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing - [8]
6VJTQKW7start supporting LÖVE v12 - [9]
FS2ITYYHrecord a known issue - [10]
VHQCNMARseveral more modules - [11]
TVCPXAAUrename - [12]
OTIBCAUJlove2d scaffold - [13]
D2GCFTTTclean up repl functionality - [14]
LXTTOB33extract a couple of files - [15]
YF2ATH2QMerge lines.love - [16]
ED4Z6ORCcleaner API for file-system access - [17]
CE4LZV4Tdrop last couple of manual tests - [18]
N2NUGNN4include a brief reference enabling many useful apps - [19]
VXORMHMEdelete experimental REPL - [20]
3QNOKBFMbeginnings of a test harness - [21]
T4FRZSYLdelete an ancient, unused file - [22]
73OCE2MCafter much struggle, a brute-force undo - [23]
SGMA5JLEsave the list of tests in repo - [24]
4SR3Z4Y3document the version of LÖVE I've been using - [25]
TBTRYEBPMerge lines.love - [26]
ZLJYLPOTMerge lines.love - [27]
2L5MEZV3experiment: new edit namespace - [28]
KKMFQDR4editing source code from within the app - [29]
LIKTH6HMupdate stale source X-( - [30]
RSZD5A7Gforgot to add json.lua - [31]
4YDBYBA4clean up memory leak experiments - [32]
BULPIBEGbeginnings of a module for the text editor - [33]
ORKN6EOBMerge lines.love - [34]
G54H3YG2get rid of all bifold text - [35]
REAIVN7WMerge lines.love - [36]
LWPFEZBIMerge lines.love - [37]
34BZ5ZKNMerge lines.love - [38]
K2X6G75Zstart writing some tests for drawings - [39]
3PSFWAILMerge lines.love - [40]
JOPVPUSAediting source code from within the app - [41]
R5QXEHUIsomebody stop me - [42]
XX7G2FFJintermingle freehand line drawings with text - [43]
BLWAYPKVextract a module - [44]
VHUNJHXBMerge lines.love - [45]
6LJZN727handle chords - [46]
KMSL74GAsupport selections in the source editor - [47]
2CK5QI7Wmake love event names consistent - [48]
2TQUKHBCMerge lines.love - [49]
OGUV4HSAremove some memory leaks from rendered fragments - [50]
66X36NZNa little more prose describing manual_tests - [51]
AVTNUQYRbasic test-enabled framework - [52]
RU4HIK43Merge lines.love - [53]
G3DLS5OUaudit all asserts - [54]
KKQKPGCIresolve conflicts
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) - replacement in source_text.lua at line 202
if App.ctrl_down() or App.alt_down() or App.cmd_down() then return endif 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.endend