| jase439 | Posted - May 06 2010 : 12:52:55 PM It would be nice if, when "insert () and closing } ) ] ' *" is active, if the cursor would jump to the EOL when a statement completion character is typed (i.e. ';').  Obviously a provision would have to be made for for-loops whose clauses are delimited by ';', but in general when invoking a function f(x,y) I want to press:
 
 ...cursor position denoted by ^
 
 
 'f' --> f^
 '(' --> f(^)
 'x' --> f(x^)
 ',' --> f(x,^)
 'y' --> f(x,y^)
 ';' --> f(x,y);^
 
 As it is, right now, I must either press "END" to jump to the EOL and then append my semi-colon (which is awkward and slows my typing) or I must redundantly type the closing parenthesis myself (which defeats at least 50% of the usefulness of this feature).
 
 If there's a way to do this in the current release please illuminate me!
 
 Thanks,
 
 J
 |