resolve conflicts
Dependencies
- [2]
FBBHEUQNresolve conflicts - [3]
I3DACDF3bugfix: Unicode - [4]
QXXISTGEresolve conflicts - [5]
6VJTQKW7start supporting LÖVE v12 - [6]
LWPFEZBIMerge lines.love - [7]
4SR3Z4Y3document the version of LÖVE I've been using - [8]
SGMA5JLEsave the list of tests in repo - [9]
T4FRZSYLdelete an ancient, unused file - [10]
KKQKPGCIresolve conflicts - [11]
TVCPXAAUrename - [12]
K2X6G75Zstart writing some tests for drawings - [13]
N2NUGNN4include a brief reference enabling many useful apps - [14]
KMSL74GAsupport selections in the source editor - [15]
2TQUKHBCMerge lines.love - [16]
ZLJYLPOTMerge lines.love - [17]
ORKN6EOBMerge lines.love - [18]
TOXPJJYYresolve conflicts - [19]
MBAJPTDJresolve conflicts - [20]
BLWAYPKVextract a module - [21]
KKMFQDR4editing source code from within the app - [22]
VP5KC4XZMerge lines.love - [23]
KWIVKQQ7Merge lines.love - [24]
R5QXEHUIsomebody stop me - [25]
JOPVPUSAediting source code from within the app - [26]
VHQCNMARseveral more modules - [27]
RSZD5A7Gforgot to add json.lua - [28]
OGUV4HSAremove some memory leaks from rendered fragments - [29]
2L5MEZV3experiment: new edit namespace - [30]
6LJZN727handle chords - [31]
BULPIBEGbeginnings of a module for the text editor - [32]
VXORMHMEdelete experimental REPL - [33]
3QNOKBFMbeginnings of a test harness - [34]
2CTN2IEFMerge lines.love - [35]
3PSFWAILMerge lines.love - [36]
CE4LZV4Tdrop last couple of manual tests - [37]
GZ5WULJVswitch source side to new screen-line-based render - [38]
ED4Z6ORCcleaner API for file-system access - [39]
OTIBCAUJlove2d scaffold - [40]
AVTNUQYRbasic test-enabled framework - [41]
4YDBYBA4clean up memory leak experiments - [42]
OI4FPFINsupport drawings in the source editor - [43]
G54H3YG2get rid of all bifold text - [44]
TBTRYEBPMerge lines.love - [45]
D2GCFTTTclean up repl functionality - [46]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing - [47]
TLOAPLBJadd a license - [48]
LXTTOB33extract a couple of files - [49]
XX7G2FFJintermingle freehand line drawings with text - [50]
CRBLAWBOresolve conflicts - [51]
66X36NZNa little more prose describing manual_tests - [52]
FS2ITYYHrecord a known issue - [53]
73OCE2MCafter much struggle, a brute-force undo - [54]
RXMHAZ6Vresolve conflicts - [55]
VHUNJHXBMerge lines.love
Change contents
- file deletion: source_text.lua source_text.lua
local endpos = line_cache.screen_line_starting_pos[i+1]return line.data:sub(offset, end_offset-1)endfunction Text.draw_cursor(State, x, y)-- blink every 0.5sif math.floor(Cursor_time*2)%2 == 0 thenApp.color(Cursor_color)love.graphics.rectangle('fill', x,y, 3,State.line_height)endState.cursor_x = xState.cursor_y = y+State.line_heightendfunction Text.populate_screen_line_starting_pos(State, line_index)local line = State.lines[line_index]local end_offset = Text.offset(line.data, endpos) - replacement in source_text.lua at line 93
local endpos = line_cache.screen_line_starting_pos[i+1]-1local endpos = line_cache.screen_line_starting_pos[i+1] - replacement in source_text.lua at line 95
return line.data:sub(offset, end_offset)return line.data:sub(offset, end_offset-1)