Removed unecessary elses.
This commit is contained in:
parent
2475b1624f
commit
75658b4f3f
|
@ -455,13 +455,11 @@ function Doc:indent_text(unindent, line1, col1, line2, col2)
|
||||||
if (unindent or in_beginning_whitespace) and not has_selection then
|
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])
|
local start_cursor = (se and se + 1 or 1) + l1d or #(self.lines[line1])
|
||||||
return line1, start_cursor, line2, start_cursor
|
return line1, start_cursor, line2, start_cursor
|
||||||
else
|
end
|
||||||
return line1, col1 + l1d, line2, col2 + l2d
|
return line1, col1 + l1d, line2, col2 + l2d
|
||||||
end
|
end
|
||||||
else
|
|
||||||
self:insert(line1, col1, text)
|
self:insert(line1, col1, text)
|
||||||
return line1, col1 + #text, line1, col1 + #text
|
return line1, col1 + #text, line1, col1 + #text
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
-- For plugins to add custom actions of document change
|
-- For plugins to add custom actions of document change
|
||||||
|
|
Loading…
Reference in New Issue