Else

The action creates or destroys an else-statement. To do this, first select the line containing the conditional if-statement and then invoke the action by menu or shortcut key <E>. It also can be an else-if-statement if corresponding conditions are met.

Before:

    if (expr_1)
    {
        expr_2;
        goto label_1;
    }
    expr_3;
label_1:
    expr_4;
After:
    if (expr_1)
        expr_2;
    else
        expr_3;
    expr_4;
Repeated command will revert it back.