- Code: Select all
/Indent Strings = "{" "if" "else" ":"
So this indent shouldn't be occurring, correct?
Welcome to the IDM Forum. This forum is meant as a user-to-user support mechanism where users can share knowledge and tips for all IDM software.
Since these forums are user-to-user based, IDM does not regularly read or reply to the posts in this forum. For problem reports, suggestions, or feature requests, you must email us directly. Our trained technical support staff answers most inquiries within 30 minutes.
/Indent Strings = "{" "if" "else" ":"if( bTest == true )
iVar = 50;
else
iVar = *piInterface;if( bTest == true ) iVar = 50;
else iVar = *piInterface;if( bTest == true )
{
iVar = 50;
}
else
{
iVar = *piInterface;
}switch( eType )
{
case Standard:
printf("Standard type\n");
break;
case Extended:
printf("Extended type\n");
break;
}switch( eType )
{
case Standard: printf("Standard type\n");
break;
case Extended: printf("Extended type\n");
break;
}switch( eType )
{
case Standard:
printf("Standard type\n");
break;
case Extended:
printf("Extended type\n");
break;
}
int x = 1 > 2 ? 1 : 2;
// is this line indented because of the colon above?complexmath wrote:But according to DaveS, UE behaves differently on Windows, which is consistent with my memory of UE on Windows.
complexmath wrote:Also, I think the rule should apply based on the last character, not the presence of a character in a line at all.
