Did you know SlickEdit has a syntax expansion shortcut for expanding a one-line statement? Suppose you have the following:
if
And you press space to expand the statement (here carets represent cursor hot-spots):
if ( ^ ) {^
}
But you wanted a single-line if statement, if you hit semicolon instead of space to expand it, you get:
if ( ^ ) ^;