Two NetBeans Keyboard Shortcuts That Will Change Your Life (Forever)
These are two NetBeans keyboard shortcuts that, seriously, are very cool. Once you know them magical things will start happening in your life.
Here's the first. Let's say my cursor is within a line, as below, and I get an error message because I don't have a semicolon (because I'm not using Groovy!):

I now press Ctrl-; (i.e., the Ctrl key plus the semicolon key). My cursor is now still in the same place as before, except that I have a semicolon at the end of the line:

Instead of that, if I press Ctrl-Shift-; (i.e., the Ctrl key plus the Shift key plus the semicolon key), from the same position as before, I not only get a semicolon, but the cursor finds itself automatically on the next line, indented according to the previous line's indentation:

Try it... you'll find magical things happening to your life. Like, you'll be coding faster and finishing your projects sooner so that you have more time to contribute tips like this one to NetBeans Zone!
| Attachment | Size |
|---|---|
| step-1.png | 11.99 KB |
| step-2.png | 9.78 KB |
| step-3.png | 8.82 KB |
(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)




Comments
Eamonn McManus replied on Mon, 2008/05/26 - 12:07pm
Geertjan Wielenga replied on Mon, 2008/05/26 - 12:28pm
in response to: em109342
[quote=em109342] except that it leaves you where you are? [/quote]
That's the point. It leaves you where you are. Very handy when you're working on a line of code and you quickly want to add a semicolon without going to the end of the line. Try it.
Carla Brian replied on Wed, 2012/04/04 - 8:05pm