AutoIndent doesn't work correctly in the new DevCPP release when Smart Tabs are set in Editor-Options.
I solved this problem by changing the two
iEditor.ExecuteCommand(ecTab, #0, nil);
lines from SynAutoIndent.pas (line 182 & 207) to
iEditor.ExecuteCommand(ecChar, ' ', nil);
However, I don't now whether it is a bug or not and if the solution is the best. But I just whant to let you know...
Log in to post a comment.
AutoIndent doesn't work correctly in the new DevCPP release when Smart Tabs are set in Editor-Options.
I solved this problem by changing the two
lines from SynAutoIndent.pas (line 182 & 207) to
However, I don't now whether it is a bug or not and if the solution is the best. But I just whant to let you know...