bugfix: syntax highlighting in source editor
[?]
Apr 9, 2023, 5:21 AM
CQWVUCXZTEFR6LAI6WIVJXRX6RB2O5KVZRC3ACL24TCMMPKGD7MQCDependencies
- [2]
GZ5WULJVswitch source side to new screen-line-based render - [3]
KKMFQDR4editing source code from within the app - [4]
UN7GKYV5support hyperlinks in the source editor - [5]
KMSL74GAsupport selections in the source editor - [6]
H4R5BHVYno more Text allocations
Change contents
- replacement in source_text.lua at line 47
select_color(f)App.screen.print(f, State.left,y)-- render colorized textlocal x = State.leftfor frag in f:gmatch('%S*%s*') doselect_color(frag)App.screen.print(frag, x,y)x = x+App.width(frag)end