Reporter | James Alexander (yanigisawa) |
---|---|
Created | Aug 6, 2012 5:38:20 PM |
Updated | Apr 16, 2018 3:42:02 PM |
Subsystem | Context Actions |
Assignee | Alisa Afonina (alisa.afonina) |
Priority | Normal |
State | Submitted |
Type | Usability Problem |
Fix version | Backlog |
Affected versions | 2018.1, 7.1 |
Fixed In Version ReSharper | Undefined |
VsVersion | All Versions |
I have my Resharper 7.1 (Build 7.0.98.60) Keyboard & Menus -> Keyboard Shortcuts set to "Visual Studio", as such, I don't expect the Edit.LineOpenBelow VS 2010 command to be overridden by R#. However, I'm seeing the below behavior:
Key Chord: Ctrl+Shift+Enter (Edit.LineOpenBelow VS command)
I have reset all visual studio settings to default, and even set the R# Keyboard Shortcuts to "None", and still R# overrides this behavior. Is there a work-around to get the default VS 2010 behavior?
Sample
if (1 == 1)
I{ // Caret Position
}
else
{
}
Key Chord: Ctrl+Shift+Enter (Edit.LineOpenBelow VS command)
Expected
if (1 == 1)
{
I // Caret Position
}
else
{
}
Actual
if (1 == 1)
{
}
else
{
}
I // Caret Position
I have reset all visual studio settings to default, and even set the R# Keyboard Shortcuts to "None", and still R# overrides this behavior. Is there a work-around to get the default VS 2010 behavior?