Merge text.love
[?]
Apr 20, 2023, 5:17 AM
EIPRCZQCZZ2LNF4V34R6CRVDUYNFGSUO2WZXYM3C5YNAWKSJQBLACDependencies
- [2]
CBTPWFGMMerge text.love - [3]
MXSAHZN4Merge lines.love - [4]
TLOAPLBJadd a license - [5]
UAYCSFSKMerge text.love - [6]
R5QXEHUIsomebody stop me - [7]
K2X6G75Zstart writing some tests for drawings - [8]
JOPVPUSAediting source code from within the app - [9]
K74U4BAUMerge lines.love - [10]
BULPIBEGbeginnings of a module for the text editor - [11]
ECBDENZ4Merge text.love - [12]
ZLJYLPOTMerge lines.love - [13]
36Z442IVback to commit 8123959e52f without code editing - [14]
YDUIKWSFMerge text.love - [15]
FS2ITYYHrecord a known issue - [16]
Q6RXCILQMerge text.love - [17]
KKMFQDR4editing source code from within the app - [18]
T4FRZSYLdelete an ancient, unused file - [19]
3QNOKBFMbeginnings of a test harness - [20]
LXTTOB33extract a couple of files - [21]
2L5MEZV3experiment: new edit namespace - [22]
VHUNJHXBMerge lines.love - [23]
4SR3Z4Y3document the version of LÖVE I've been using - [24]
ZTZOO2OQMerge lines.love - [25]
RSZD5A7Gforgot to add json.lua - [26]
KMSL74GAsupport selections in the source editor - [27]
2CTN2IEFMerge lines.love - [28]
2TQUKHBCMerge lines.love - [29]
73OCE2MCafter much struggle, a brute-force undo - [30]
OTIBCAUJlove2d scaffold - [31]
3G723RV5Merge text.love - [32]
A4BSGS2CMerge lines.love - [33]
2CFLXLIEMerge text.love - [34]
BLWAYPKVextract a module - [35]
OGUV4HSAremove some memory leaks from rendered fragments - [36]
PJ5PQAQErecord support for multiple versions - [37]
XX7G2FFJintermingle freehand line drawings with text - [38]
N2NUGNN4include a brief reference enabling many useful apps - [39]
D2GCFTTTclean up repl functionality - [40]
AVTNUQYRbasic test-enabled framework - [41]
6LJZN727handle chords - [42]
VP5KC4XZMerge lines.love - [43]
ORKN6EOBMerge lines.love - [44]
EX43CDDIMerge text.love - [45]
VXORMHMEdelete experimental REPL - [46]
TVCPXAAUrename - [47]
2JBAEQHUMerge lines.love - [48]
MD3W5IRAnew fork: rip out drawing support - [49]
CE4LZV4Tdrop last couple of manual tests - [50]
4YDBYBA4clean up memory leak experiments - [51]
QD4LOFQRMerge text.love - [52]
KWIVKQQ7Merge lines.love - [53]
66X36NZNa little more prose describing manual_tests - [54]
VHQCNMARseveral more modules - [55]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing - [56]
JZR3QMTNMerge lines.love - [57]
O3WZWLYCMerge text.love - [58]
3PSFWAILMerge lines.love
Change contents
- file deletion: source_text.lua source_text.lua
endif State.cursor1.pos == nil thenState.cursor1.pos = 1end-- hack: insert a text line at bottom of file if necessaryif State.cursor1.line > #State.lines thenassert(State.cursor1.line == #State.lines+1)table.insert(State.lines, {mode='text', data=''})table.insert(State.line_cache, {})end--? print(y, App.screen.height, App.screen.height-State.line_height)if y > App.screen.height - State.line_height thenState.screen_top1 = {line=State.screen_bottom1.line, pos=State.screen_bottom1.pos}--? print('setting top to', State.screen_top1.line, State.screen_top1.pos)