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]
AYE2VEGJextract a couple of methods - [5]
CBPV5SSIstop handling nil screen_line_starting_pos everywhere - [6]
WOXIYUTLbugfix: manage screen_top and cursor when resizing - [7]
HTWAM4NZbugfix: scrolling in left/right movements - [8]
SVJZZDC3snapshot - no, that's all wrong - [9]
2RXZ3PGObeginning of a new approach to scroll+wrap - [10]
CPZGQT72go through and fix similar issues - [11]
LXTTOB33extract a couple of files - [12]
CUIV2LE5some typos - [13]
ZPUQSPQPextract a few methods - [14]
V5MJRFOZbugfix: down arrow doesn't scroll up unnecessarily - [15]
MP2TBKU6bugfix: crash in Text.up() after return - [16]
PIEDOKYQbugfix - [17]
4J2L6JMRbugfix: deleting a selection spanning pages - [18]
ZHLO7K3Madd args to some functions - [*]
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)