resolve conflicts
Dependencies
- [2]
FYRGHNLCresolve conflicts - [3]
UCW27FJKbugfix: utf-8 - [4]
AVTNUQYRbasic test-enabled framework - [5]
CE4LZV4Tdrop last couple of manual tests - [6]
ORKN6EOBMerge lines.love - [7]
66X36NZNa little more prose describing manual_tests - [8]
TFUNIT6Mresolve conflicts - [9]
VXORMHMEdelete experimental REPL - [10]
OGUV4HSAremove some memory leaks from rendered fragments - [11]
KKQKPGCIresolve conflicts - [12]
RSZD5A7Gforgot to add json.lua - [13]
VHUNJHXBMerge lines.love - [14]
4YDBYBA4clean up memory leak experiments - [15]
4SR3Z4Y3document the version of LÖVE I've been using - [16]
LWPFEZBIMerge lines.love - [17]
TVCPXAAUrename - [18]
3QNOKBFMbeginnings of a test harness - [19]
3PSFWAILMerge lines.love - [20]
ISOFHXB2App.width can no longer take a Text - [21]
JOPVPUSAediting source code from within the app - [22]
ZLJYLPOTMerge lines.love - [23]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing - [24]
K2X6G75Zstart writing some tests for drawings - [25]
N2NUGNN4include a brief reference enabling many useful apps - [26]
ED4Z6ORCcleaner API for file-system access - [27]
KMSL74GAsupport selections in the source editor - [28]
2CTN2IEFMerge lines.love - [29]
RU4HIK43Merge lines.love - [30]
D2GCFTTTclean up repl functionality - [31]
BLWAYPKVextract a module - [32]
XX7G2FFJintermingle freehand line drawings with text - [33]
R5QXEHUIsomebody stop me - [34]
TLOAPLBJadd a license - [35]
KKMFQDR4editing source code from within the app - [36]
SGMA5JLEsave the list of tests in repo - [37]
TBTRYEBPMerge lines.love - [38]
34BZ5ZKNMerge lines.love - [39]
FS2ITYYHrecord a known issue - [40]
VP5KC4XZMerge lines.love - [41]
6LJZN727handle chords - [42]
VHQCNMARseveral more modules - [43]
LXTTOB33extract a couple of files - [44]
2L5MEZV3experiment: new edit namespace - [45]
73OCE2MCafter much struggle, a brute-force undo - [46]
6VJTQKW7start supporting LÖVE v12 - [47]
T4FRZSYLdelete an ancient, unused file - [48]
BULPIBEGbeginnings of a module for the text editor - [49]
G3DLS5OUaudit all asserts - [50]
OTIBCAUJlove2d scaffold
Change contents
- file deletion: source_text.lua source_text.lua
local len = utf8.len(s)local offset = Text.offset(s, math.min(pos+1, len+1))local s_before = s:sub(1, offset-1)--? print('^'..s_before..'$') - replacement in source_text.lua at line 910
local offset = Text.offset(s, math.min(pos+1, #s+1))local len = utf8.len(s)local offset = Text.offset(s, math.min(pos+1, len+1))