Resharper - is it possible to go to method's implementation on CTRL-click instead of going to declaration?

c#, resharper, visual-studio-2012

Solution

CTRL+Click = Go to declaration

CTRL+ALT+Click = Go to implementation

CTRL+SHIFT+Click = Peek to declaration (Visual Studio 2013)

Problem

if I do CTRL-click on method's name in VS2012 with Resharper 8, I'm redirected to the method's "declaration" - and that's quite inconvenient if I have lots of interfaces in my project. If it possible to configure resharper to go right to the IMPLEMENTATIONS of the method (and if there is more than one - display a context menu which I need to select the desired method from)? I can achieve this if I do right-click -> "Go to Implementation" but I really prefer to have this on ctrl-click.

Original source

Related problems