2
votes

I have not (knowingly) created or reassigned any keyboard shortcuts, and thought that I should be at using only 'default' keyboard shortcuts. But when I attempt to type an uppercase 'E', the status bar displays,

"(Shift+E) was pressed. Waiting for the second key of the chord..."

. If I hit Esc as suggested in the question, How do you stop Visual Studio from waiting for the second part of a shortcut-combination?, the status bar displays,

"The key combination (Shift+E, Esc) is not a command."

No other key combinations have produced an alternative outcome. This issue only exists for E and only exists in Visual Studio. Shift+E isn't in any Default Keyboard Shortcut I saw on MSDN.

I installed the Intellicommand Extension as recommended in the Display Possible Chord Continuations in Visual Studio discussion, but no prompts are displayed when I type Shift+E.

Any suggestions for troubleshooting?

5
Try opening the currentsettings.vssettings file from your "Documents\Visual Studio 2013\Settings" folder in notepad. See if there is anything interesting inside the <UserShortcuts> tag. - OldFart
Have you installed any addins or extensions lately? Which file types are affected? - Panagiotis Kanavos
@OldFart - I took a look, and nothing appeared out of place. After closing, Visual Studio completely crashed. After uninstalling VS 2013 and installing VS 2015, everything is fine. Unfortunately, I never did figure out why I was having these errors. - Kratzke
@PanagiotisKanavos - I did install IIS 10.0 Express. - Kratzke

5 Answers

5
votes

Go to Tools > Options > Environment/Keyboard dialog. Then put focus on the Press shortcut keys: textbox, do shift+E and see what comes up. Once you find where it is set just update it to something else.

3
votes

I've just noticed this problem, removed the PowerShell Tools for Visual Studio extension, which I updated the other day and now Shift-E works again...

1
votes

Just had this happen to me.

Can confirm its definitely caused by the PowerShell Tools for Visual Studio extension.

Pressing Shift+E in the Keyboard dialogue didn't bring up anything, however having read responses to this post about it possibly being related to the mentioned extension searched for PowerShell in the "Show commands containing:" box. It brings up a few, and the second one down for me "EditorContextMenus.CodeWindow.PowerShell.ExecuteAsAScript" had Shift+E, F5. I removed this shortcut and now Shift+E is working fine.

0
votes

Visual Studio's behaving like you have something bound to Shift-E, _.

Since you say you haven't set up any keybindings, have you tried following MSDN's instructions on resetting your environment?

0
votes

I got the same problem, but manage to get rid of it.

Most probable cause for me was extension "PowerShell Tools for Visual Studio". Additionaly, I've disabled keyboard shortcuts synchronization in Tools>Options>Synchronized Settings and restored default keyboard mapping scheme as well.

Hope that helps!