T O P I C R E V I E W |
v_v |
Posted - Oct 12 2010 : 05:41:53 AM 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? |
4 L A T E S T R E P L I E S (Newest First) |
feline |
Posted - Dec 08 2010 : 10:04:44 PM We are considering a feature to place the semi-colon at the end of the line, if you type it mid line:
case=296 |
digero |
Posted - Dec 06 2010 : 9:28:39 PM 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). |
v_v |
Posted - Dec 06 2010 : 11:35:21 AM And the same for "return;" in procedures, please! |
accord |
Posted - Oct 12 2010 : 12:42:14 PM I think it's a sensible idea. I have put in a feature request to see what the developers make of it: case=51158
Thanks. |