From 2066415f82ba4fdda8d6f3020024d9fbf997e3da Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Sun, 25 Jan 2009 21:09:41 -0500 Subject: Replaced str:match with str:find where applicable for speed improvements. --- modules/lua/commands.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/lua') diff --git a/modules/lua/commands.lua b/modules/lua/commands.lua index 9427e8cc..0b918087 100644 --- a/modules/lua/commands.lua +++ b/modules/lua/commands.lua @@ -28,9 +28,9 @@ function try_to_autocomplete_end() local line_num = buffer:line_from_position(buffer.current_pos) local line = buffer:get_line(line_num - 1) for _, patt in ipairs(control_structure_patterns) do - if line:match(patt) then + if line:find(patt) then local indent = buffer.line_indentation[line_num - 1] - buffer:add_text(patt:match('repeat') and '\nuntil' or '\nend') + buffer:add_text(patt:find('repeat') and '\nuntil' or '\nend') buffer.line_indentation[line_num + 1] = indent buffer.line_indentation[line_num] = indent + buffer.indent buffer:line_up() -- cgit v1.2.3