fix #17, ident after curly bracket auto-closing depending on options

This commit is contained in:
Basile Burg 2016-02-19 04:56:16 +01:00
parent 4ab47fb7bf
commit 4272869093
1 changed files with 2 additions and 2 deletions

View File

@ -790,13 +790,13 @@ begin
editor.CommandProcessor(ecDown, '', nil);
editor.CommandProcessor(ecInsertLine, '', nil);
editor.CommandProcessor(ecDown, '', nil);
editor.CommandProcessor(ecLineStart, '', nil);
while editor.CaretX <> 1 do editor.CommandProcessor(ecLeft, '' , nil);
for j := 1 to i do editor.CommandProcessor(ecChar, beg[j], nil);
editor.CommandProcessor(ecChar, '}', nil);
editor.CommandProcessor(ecUp, '', nil);
editor.CommandProcessor(ecLineStart, '', nil);
for j := 1 to i do editor.CommandProcessor(ecChar, beg[j], nil);
editor.CommandProcessor(ecTab, '', nil);
while editor.CaretX > 1 + i + editor.TabWidth do editor.CommandProcessor(ecLeft, '' , nil);
editor.EndUndoBlock;
end;