Reputation: 3
A percentage of the times that I create an instance of an object, my shift key is disabled for the next keypress.
I try to type:
ClassName thing = new ClassName()
but it comes out:
ClassName thing = new ClassName9)
My best guess is that there is some kind of hotkey or macro that VS is attempting to use here, but I can't seem to figure out which. I've verified that this is a VS 11 issue by attempting the same keystrokes in other applications with no unusual behavior. Also, I'm not typing too fast. I'm being very deliberate in my keystrokes. Does anyone have an idea of what's going on or how to fix this?
Upvotes: 0
Views: 124
Reputation: 5082
Does it still repro in safe mode? If not it's an Add-in doing the damage. If it still repro's I'd be tempted to reinstall VS.
DevEnv /safemode
http://msdn.microsoft.com/en-US/library/ms241278(v=vs.80).aspx
VS CommandLine Switch Docs
http://msdn.microsoft.com/en-us/library/xee0c8y7(v=VS.80).aspx
Upvotes: 1