Skip to main content

Remove Redundant Block Delimiters (C#, C++)

Removes redundant block delimeters.

#Availability

Available from the context menu or via shortcuts:

  • when the cursor is on a redundant opening or closing block delimeter.

#Examples

int res;
if (a)
{
    res = 1;
}

Result:

int res;
if (a)res = 1;

#Screenshot

rsRemoveRedundantBlockDelimeters