(This problem also exists on SlickEdit 2012 which I normally use, but I figured I would report it here sicne I just noticed it on the beta).
For some modules, I use a wrappering macro to be able to use the same code for multiple linked objects:
#define WRAPPER(FUNC) SomeWrapper##FUNC
static int WRAPPER(Monkey)(uint64_t uFlags, ACP_MemoryInfo *pMemoryInfo)
{
Something1 = 10;
Something2 = 11;
Something3 = 12;
Something4 = 13;
Something5 = 14;
return 0;
}
In this example, if you put a line before "Something1" and type "if (", the autocompletion will put the curly-braces in for you, and you can expand the section to be included using the arrow keys.
Unfortunately, hitting the down key moves the end-curly all the way past the end of the function...