Removed unecessary elses.

This commit is contained in:
Adam Harrison 2021-06-07 08:26:49 -04:00
parent 2475b1624f
commit 75658b4f3f
1 changed files with 3 additions and 5 deletions

View File

@ -455,13 +455,11 @@ function Doc:indent_text(unindent, line1, col1, line2, col2)
if (unindent or in_beginning_whitespace) and not has_selection then
local start_cursor = (se and se + 1 or 1) + l1d or #(self.lines[line1])
return line1, start_cursor, line2, start_cursor
else
return line1, col1 + l1d, line2, col2 + l2d
end
else
self:insert(line1, col1, text)
return line1, col1 + #text, line1, col1 + #text
return line1, col1 + l1d, line2, col2 + l2d
end
self:insert(line1, col1, text)
return line1, col1 + #text, line1, col1 + #text
end
-- For plugins to add custom actions of document change