vote up 13 vote down star
12

Let's show some Resharper love and learn new shortcuts while at it:

Along the lines of Joel Spolsky's "What is your single favorite keyboard shortcut in Emacs?" what is your single favorite Resharper shortcut? One shortcut per answer, please.

Would it be:

  • ctrl-N/ctrl-shift-N (open type/open file)
  • ctrl-shift-G (a friend calls this "Super Go")
  • alt-ins
  • ctrl-k-ctrl-s/ctrl-/ (comment/uncomment)
  • f2 (rename method/variable etc.)

I figure we can deal with more than one favorite by providing multiple answers - let the best ones rise to the top.

UPDATE:

I think we have to give this on to Ilya because of his work with Resharper in the first place. Thanks Ilya!

Honourable mention to bdukes for multiple entries in the format requested, the link to reference for Resharper shortcuts for those that don't know it yet, and the mention of the Scout plugin.

For the category of "a shortcut I didn't know that I'm glad to have now": although not necessarily a Resharper one, is Jivko Petiov's for remapping File.OpenContainingFolder to Alt-O

Thanks all!

flag
Should we differentiate between IDEA and Visual Studio style key bindings? – bdukes Sep 18 '08 at 20:26
1  
Yeah, the answers here are confusing as they don't state what key binding is required. People reading this who aren't aware that there are different bindings might be disappointed when they try a new keystroke and it doesn't work. – Drew Noakes Oct 11 '08 at 11:20

30 Answers

vote up 6 vote down check

Some very useful shortcuts rarely known:

Recent Files (Ctrl-,) Recent Edits (Ctrl-Shift-,) Locate in Solution Explorer (Alt-Shift-L)

PS: VS keymap

link|flag
1  
You should add these to the keymap pdf. – Tony_Henrich Jul 15 at 17:26
vote up 5 vote down

Alt-enter does so many things based on your context.

More favs:

  • control + shift + r: pop up a list of refactorings available in your context
  • control + F6 (when your cursor is on a method signature): change the method signature
  • F2: the easiest one to get used to, rename (as already mentioned)
link|flag
vote up 5 vote down

It has to be Alt+Enter. I use it more than any other short-cut in any other program.

link|flag
vote up 4 vote down

CTRL-N - find class. Most heavily used.

link|flag
vote up 2 vote down

F12 - Go To Definition (made even better through the Scout plugin, which'll go to .NET Source, then Reflector if it can't show you otherwise).

link|flag
Isn't that navigate to next error/warning/suggestion? – Ted Sep 18 '08 at 19:27
Just checked out Scout. Sweet and thanks! – Ted Sep 18 '08 at 19:48
vote up 2 vote down

Ctrl+Alt+V - Introduce field / variable.

link|flag
vote up 1 vote down

Ctrl+R, M to extract method

link|flag
vote up 1 vote down

Ctrl+R, R to rename

link|flag
vote up 1 vote down

Ctrl+E, U to surround with a live template

link|flag
vote up 1 vote down

Shift + F12 and Alt + Shift + F12 to find usages of a member

link|flag
vote up 1 vote down

Ctrl + Shift + R to refactor the current selection

link|flag
vote up 1 vote down

Ctrl + T to go to type

link|flag
vote up 1 vote down

ctrl-shift-alt-arrow (move method up and down)

link|flag
vote up 1 vote down

CTRL-ALT-M => Extract Method, very nice for refactoring

CTRL-ALT-V => Extract Variable: i don't define variables any more, i just write a statement and extract it then :)

CTRL-ALT-J => surround with (i just love it!)

and of course: F2

link|flag
vote up 1 vote down

For completeness and cross-referencing, IDEA/ReSharper 2.x keyboard shortcuts and Visual Studio keyboard shortcuts

link|flag
vote up 1 vote down
  • alt + o

It's actually custom and maps to File.OpenContainingFolder.

  • ctrl + f
  • ctrl + shift + f

Global search. Invaluable when going through lots of source code.

link|flag
Love it! Wonderful! (and other superlatives in order to reach the 10 character minimum here). – Ted Sep 19 '08 at 19:08
vote up 1 vote down

I'm a CTRL-ALT-F (code cleanup) junkie

link|flag
vote up 1 vote down

In 2006 I requested a new ReSharper feature that allows moving left and right one 'hump' at a time. That is, in SomeSortOfPascal or someSortOfCamel symbol, you can move within words.

i.e. myLengthyVariableName
     ^ ^      ^       ^   ^

You can make this the default behaviour for CTRL+LeftArrow and CTRL+RightArrow (via CamelHumps in the R# options) but personally I can't do without moving left and right with great speed. So instead you can map these commands yourself to whatever keystrokes you like. Here are the ones I use:

Default set from VS:

  • CTRL + LeftArrow (move left one word)
  • CTRL + RightArrow (move left one word)

My additional mappings:

  • CTRL + > (move left one hump)
  • CTRL + < (move right one hump)
  • CTRL + SHIFT + > (extend selection left one hump)
  • CTRL + SHIFT + < (extend selection right one hump)

The commands for these can all be found by filtering the command list on the term hump. From memory they are HumpLeft, HumpRight, HumpExtendLeft, HumpExtendRight.

You can bind commands to keystrokes via Tools > Options > Keyboard.

I only wish R# supported these commands in dialogs. More often than not when renaming things I'm inserting, removing, moving or changing one of the terms within a compound word.

link|flag
vote up 0 vote down

CTRL+ALT+j (surround with)

link|flag
vote up 0 vote down

Most of my favorite ones are custom made. But a really good one that is standard is Ctrl + Alt + Down Arrow.

That will drop down the list of open files that can be typed into for searching and switching files.

All of this totals to a nice easy keyboard way to switch between open files.

Vaccano

link|flag
vote up 0 vote down

Ctrl+R, O to move a method

link|flag
Or F6 (and it's got to be a static method) – Ted Sep 18 '08 at 19:31
vote up 0 vote down

Alt + \ to go to member

link|flag
vote up 0 vote down

This'll be hard to actually vote on, because pretty much all of the above are huge time savers.

I'll add ctrl-shift-backspace (navigate to past edits)

link|flag
vote up 0 vote down

ALT+R, U, N - run all unit tests.

ALT+R, N, C - create a new class.

ALT+R, N, I - create a new interface.

link|flag
You can create new class/interface/etc by going to the solution explorer (CTRL+ALT+L) and pressing ALT+INS. – Drew Noakes Oct 11 '08 at 11:54
I also wish there was richer (and simpler) set of shortcut keys for running unit tests. Maybe one to re-run the last batch. – Drew Noakes Oct 12 '08 at 1:53
vote up 0 vote down

For my Resharper has two great features: Find type (Ctrl + T) and locate file in solution explorer (Alt-Shift-L).

I can't live without them, because usually I know what class I want to see but I don't know where in solution it is.

link|flag
vote up 0 vote down

CTRL + M, CTRL + O (Collapse To Definitions)

link|flag
vote up 0 vote down

use of capital letters to navigate through intellisense suggestions

link|flag
vote up 0 vote down

I think all of the find shortcuts are my favorite (Ctrl+T, Ctrl+Shift+T, etc)

I do wish that the symbol find would be confinded to the current file though.

link|flag
vote up 0 vote down

Shift+Alt+PageDown => Goes to next error in solution. Requires you have solution analysis turned on.

link|flag
vote up 0 vote down

VS provides CTRL+ALT+L to show the solution explorer. However, this just focusses the panel. To move to the active document in solution explorer, use the command provided by ReSharper: ReSharper.LocateInSolutionExplorer.

You can bind commands to keystrokes via Tools > Options > Keyboard.

Personally, I bound this to CTRL+SHIFT+L and use it many times a day.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.