Re: Problem in VS2005 with Refactor Pro/CodeRush installed
In VS2005 (when in a C# source file) if I position the cursor over a ')' or a ';' (without the quotes, of course) and do an ":w[Enter]" then the editor behaves as though I hit the enter key in edit mode - meaning I get a new line. For example:
public void someFunction()
{
doSomething();
}
If the cursor is position at either the semicolon at the end of the line, or at any of the closing parentheses, and I want to save the file (via :w) here's what I end of with after the file is saved:
public void someFunction()
{
doSomething()
;
}
Any ideas on how to resolve this (assuming it's probably something wrong with my configuration/mappings? I am using ViEmu 2.0.53 and DO have the Refactor! Pro plug-in from this site for compatibility installed.
Thanks in advance for any information!
Brandon