Re: Problem with ViEmu selection
VS2010, Win 7 Pro x64
ViEmu 2.5.11
When I select lines and use VS's surround-with command, the formatting is broken.
For example:
void main()
{
int a;
int b;
doSomething();
doSomethingElse();
bye();
}
Put cursor on the line with doSomething(), go down one line, use the chord Ctrl-K, Ctrl-S, select #if. Here's the result:
#if true
doSomething();
doSomethingElse();
#endif bye();
Is there anyway to improve this -- line selection -- so the two do... lines are surrounded?