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