Wrap Selected Lines with Braces - CSharpCompleterPlusSometimes you will have the following code sequence:
You find that you need to insert one or more lines into the "if block", and you would have to insert a "{" after the line after the if and a "}" after the line following the if. That's a lot of work that you find yourself repeating all the time.
CSharpCompleterPlus can do this for you. First, place the mouse cursor any where in the line following the if line and right-click the mouse. From the CSharpCompleterPlus Menu, click the Wrap Selection {...} option. The code will now look like the following:
and, the cursor will be positioned at the start of the blank line, above the new "}". Guess how many keystrokes that saved you!
|