Method proposals should be insertable with the ';' key
Status: Beta
Brought to you by:
bernhardbrem
If a user is using code completion on a method that doesn't have any parameters, they should be able to use ';' to insert the method and also add the ';' after the proposal.
So if something like...
string temp = <ctrl+space>
...happened, they should see a list of suggestions and then after having selected the ToString() method, they should be able to just hit the ';' key, and see...
string temp = ToString();<text cursor here>
At the moment, they have to use the 'Enter' key to make their document look like...
string temp = ToString()<text cursor here>
...and then they have to add the semi-colon themselves.
Something like this is implemented in JDT's editor, try it out for yourself.