bugfix: scrolling up using scroll wheel
Dependencies
- [2]
O7YTBRQYbugfix: restart search on backspace - [3]
F5KCYFOYsimpler implementation of bugfix #2 - [4]
NVSC4N4Kchange a helper slightly - [5]
IENTL2ITindent - [*]
KKMFQDR4editing source code from within the app - [*]
2L5MEZV3experiment: new edit namespace
Change contents
- replacement in source_edit.lua at line 146
while line < #State.lines doif State.lines[line].mode == 'text' then return endwhile line <= #State.lines and State.lines[line].mode ~= 'text' do - replacement in source_edit.lua at line 149
if State.lines[line].mode == 'text' thenState.cursor1.line = lineState.cursor1.pos = 1breakendendif line <= #State.lines and State.lines[line].mode == 'text' thenState.cursor1.line = lineState.cursor1.pos = 1 - replacement in edit.lua at line 144
while line < #State.lines doif State.lines[line].mode == 'text' then return endwhile line <= #State.lines and State.lines[line].mode ~= 'text' do - replacement in edit.lua at line 147
if State.lines[line].mode == 'text' thenState.cursor1.line = lineState.cursor1.pos = 1breakendendif line <= #State.lines and State.lines[line].mode == 'text' thenState.cursor1.line = lineState.cursor1.pos = 1