code completion, brackets not added after pressing enter
Posted: Fri Aug 17, 2018 9:43 pm
For example, I type
and the "V.size()" item appeared in the completion box.
Then I press enter and the code become
instead of
Note that this will only happen if there is already a ')' next to "V.s" before completion.
This had not appeared in older versions, and I cannot understand what its benefits are.
Is that a new feature in recent weekly builds?
Code: Select all
vector < int > V;
for(i=0;i<V.s)
Then I press enter and the code become
Code: Select all
vector < int > V;
for(i=0;i<V.size)
Code: Select all
vector < int > V;
for(i=0;i<V.size())
This had not appeared in older versions, and I cannot understand what its benefits are.
Is that a new feature in recent weekly builds?