add args to some functions
[?]
Jul 8, 2022, 10:49 PM
2TQR4PSY2FBIKEEKC2Y5ZPVPOD2QJ3EATII47PPWNMTAQA7EQ6GACDependencies
- [2]
YJJ4X4JGbugfix: avoid scrolling on 'end' - [3]
2H67P75Xswitch arg for a function - [4]
V5MJRFOZbugfix: down arrow doesn't scroll up unnecessarily - [5]
4J2L6JMRbugfix: deleting a selection spanning pages - [6]
ZHLO7K3Madd args to some functions - [7]
MP2TBKU6bugfix: crash in Text.up() after return - [8]
PIEDOKYQbugfix - [9]
CUIV2LE5some typos - [10]
CBPV5SSIstop handling nil screen_line_starting_pos everywhere - [11]
ZPUQSPQPextract a few methods - [12]
WOXIYUTLbugfix: manage screen_top and cursor when resizing - [13]
2RXZ3PGObeginning of a new approach to scroll+wrap - [14]
SVJZZDC3snapshot - no, that's all wrong - [15]
AYE2VEGJextract a couple of methods - [16]
LXTTOB33extract a couple of files - [17]
CPZGQT72go through and fix similar issues - [18]
HTWAM4NZbugfix: scrolling in left/right movements - [*]
BULPIBEGbeginnings of a module for the text editor
Change contents
- replacement in text.lua at line 408
local screen_line_index,screen_line_starting_pos = Text.pos_at_start_of_cursor_screen_line()local screen_line_index,screen_line_starting_pos = Text.pos_at_start_of_cursor_screen_line(left, right) - replacement in text.lua at line 485
local screen_line_index, screen_line_starting_pos = Text.pos_at_start_of_cursor_screen_line()local screen_line_index, screen_line_starting_pos = Text.pos_at_start_of_cursor_screen_line(left, right) - replacement in text.lua at line 510
local _,botpos = Text.pos_at_start_of_cursor_screen_line()local _,botpos = Text.pos_at_start_of_cursor_screen_line(left, right) - replacement in text.lua at line 590
function Text.pos_at_start_of_cursor_screen_line()function Text.pos_at_start_of_cursor_screen_line(left, right) - replacement in text.lua at line 962
--? local _,botpos = Text.pos_at_start_of_cursor_screen_line()--? local _,botpos = Text.pos_at_start_of_cursor_screen_line(left, right) - replacement in select.lua at line 138
_,Screen_top1.pos = Text.pos_at_start_of_cursor_screen_line()_,Screen_top1.pos = Text.pos_at_start_of_cursor_screen_line(left, right) - replacement in search.lua at line 59
local _, pos = Text.pos_at_start_of_cursor_screen_line()local _, pos = Text.pos_at_start_of_cursor_screen_line(Margin_left, App.screen.width-Margin_right) - replacement in search.lua at line 99
local _, pos = Text.pos_at_start_of_cursor_screen_line()local _, pos = Text.pos_at_start_of_cursor_screen_line(Margin_left, App.screen.width-Margin_right)