bugfix: Unicode
Dependencies
- [2]
I64IPGJXavoid saving fragments in lines - [3]
GZ5WULJVswitch source side to new screen-line-based render - [4]
JY4VK7L2rename - [5]
RTDYYP4Hbugfix: text past cursor was rendered red on wrapped lines - [6]
OYXDYPGSget rid of debug variables - [7]
Y36LOGR5bugfix: show cursor when past end of line - [8]
CVGE3SIGI feel confident now that page-down is working. - [9]
H2DPLWMVsnapshot: wrapping long lines at word boundaries - [10]
XNFTJHC4split keyboard handling between Text and Drawing - [11]
537TQ2QNsome more logging - [12]
G54H3YG2get rid of all bifold text - [13]
KKMFQDR4editing source code from within the app - [14]
Z4XRNDTRfind text - [15]
5DOC2CBMextract a function - [*]
BULPIBEGbeginnings of a module for the text editor
Change contents
- replacement in text.lua at line 68
local endpos = line_cache.screen_line_starting_pos[i+1]-1local endpos = line_cache.screen_line_starting_pos[i+1] - replacement in text.lua at line 70
return line.data:sub(offset, end_offset)return line.data:sub(offset, end_offset-1) - 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)