Block

The action toggles a conditional if-statement  from unblocked to blocked and back. To do this, first select the line containing the if-statement and then invoke the action by menu or shortcut key <B>.

Example:
Before:
    if (expr_1) goto label_1;
    expr_2;
label_1:
    expr_3;
After:
    if (!expr_1)
        expr_2;
    expr_3;