Hello! I became too lazy using VAX =) I like auto insertion of brackets after function very much. But after every void-returning function I have to type a semicolon though it looks very predictable. Is it possible to insert a semicolon in such situations automatically?
Along the same vein, it would be nice to have an option to automatically place a typed semicolon at the end of the line when it makes sense to do so (i.e., unless you're inside a for statement, or there's already a semicolon, etc.). Eclipse has this feature. For example if my cursor is where the | is: int example = FuncA(FuncB(foo|)) When I type a semicolon the line becomes: int example = FuncA(FuncB(foo));|
In addition to the ; being in the right spot, the cursor is also at the end of the line, so you don't have to hit End before adding a new line. Backspace undoes the smart positioning, leaving the ; where you originally typed it (Ctrl+Z probably does too).