7PZ4CQFVYUMSJKVCNM75VKK5JCUYU6ICHWPZXXIC3S63YJVFCP5QC local line = State.lines[State.cursor1.line]if line.mode == 'text' thenpos = line.data:find(State.search_term, State.cursor1.pos)if pos thenState.cursor1.pos = posend
local pos = find(State.lines[State.cursor1.line].data, State.search_term, State.cursor1.pos)if pos thenState.cursor1.pos = pos
local line = State.lines[i]if line.mode == 'text' thenpos = State.lines[i].data:find(State.search_term)if pos thenState.cursor1.line = iState.cursor1.pos = posbreakend
pos = find(State.lines[i].data, State.search_term)if pos thenState.cursor1.line = iState.cursor1.pos = posbreak
local line = State.lines[State.cursor1.line]if line.mode == 'text' thenpos = line.data:find(State.search_term)if pos and pos < State.cursor1.pos thenState.cursor1.pos = posend
pos = find(State.lines[State.cursor1.line].data, State.search_term)if pos and pos < State.cursor1.pos thenState.cursor1.pos = pos