vote up 3 vote down star
1

What are the most useful keyboard short-cuts in an IDE

I know of Visual Studio:

  • SHIFT+ALT+F10 - Show Smart Tag

I wish there were Eclipse like functionality below:

  • CTRL+SHIFT+H - Show Hierarchy
  • CTRL+T - Find related Types
  • CTRL+SHIFT+T - Open Types
flag

63% accept rate
Actually, one of the first things I do on a fresh install of VS is to redefine a lot of keyboard shortcuts for example F7 build, F8 run without debugger, etc - am I alone with this custom? – DrJokepu Jan 14 at 6:13
WHY THIS CLOSED!!!!!!!!!!!!!!!!!!! I'm really becoming sick of closing thread. (If people are intersted in it then leave it). I wish Stackoverflow review their policies about closing Questions. – Youssef Jan 14 at 15:40
Although I didn't close this, I can vouch that it should have likely been a wiki-poll question. That would have probably assisted to avoid this fate. – Robert Gould Jan 15 at 1:14
@Youssef, it is closed by vote, and you need 5K rep to be able to vote. Nobody has voted for it to be reopened, which implies that its in unanimous agreement of possibly as much as 100 people agreeing this should be closed. – Kent Fredric Jan 15 at 5:34
My mistake, its only 3K rep to vote, which expands to a whopping 300 users. I think thats awfully fair. – Kent Fredric Jan 15 at 5:36

closed as not a real question by Rob Jan 14 at 15:00

25 Answers

vote up 3 vote down

Visual Studio: F5 or Ctrl-F5 - debug/execute without debug

link|flag
vote up 2 vote down

CTRL+F

I'm always searching for something!

link|flag
vote up 1 vote down

Visual Studio

  • Ctrl + Shift + F Find in multiple files.
  • Ctrl + K + D Apply default formatting rules.
  • Ctrl + K + C Comment section.
  • Ctrl + K + U Uncomment section.
  • Ctrl + Alt + E Debugger auto break on exception settings.
link|flag
vote up 9 vote down

Crtl + Z: Undo!

link|flag
vote up 2 vote down

In Visual Studio:

F12 on a method or variable to go to the method source or variable definition.

link|flag
vote up 1 vote down

In Visual Studio:

Highlight a block of code, and then press Ctrl-K-F to nicely adjust the indentation of the entire block. This also takes into account condition blocks and loops.

link|flag
wow, that's nice... why can't it do this by default when you paste something? – Hazar Jan 14 at 7:17
It must be an editor option, because my VS seems to adjust indentation and formatting when pasting code in. – nsr81 Jan 14 at 14:24
Go to Options->Text Editor-><Language>->Tabs and check what setting you have for "Indenting". "Smart" indenting will automatically indent the code for you when you have conditional statements and loops and automatically remove the indent when required (so you don't have redundant whitespace). – LeopardSkinPillBoxHat Jan 14 at 22:17
Hmmm...this doesn't seem to work when pasting code, only when writing new code :-( – LeopardSkinPillBoxHat Jan 14 at 22:20
vote up 0 vote down

If you are using resharper (highly recommended) these are the biggies:

  • Alt-Enter for the quick fixes and context actions
  • Alt-Insert for the code generation stuff
  • Ctrl-Shift-R for the refactoring tools
  • Alt-` for the navigation stuff (go to type, go to file). I hardly ever use solution explorer because of this short cut
link|flag
vote up 0 vote down

Ctrl + Shift + Home End UpArrow DownArrow.

Much better than using the mouse to select a lot of text. Not really IDE specific, but definitely the combo I use the most.

link|flag
vote up 6 vote down

Ctrl + C & Ctrl + V

link|flag
Hm, is that a refactoring chord? I'm pretty sure that one is the "Make reusable" refactoring! :) – Michael Meadows Jan 14 at 14:38
Unfortunately...brainless C&P drives me insane! – cschol Jan 15 at 5:34
vote up 1 vote down

Visual Studio:

CTRL-R + CTRL-T

Runs unit tests in current scope (which I usually do more often than running the app)

link|flag
I assume that's Visual Studio, no? You didn't say. – paxdiablo Jan 14 at 5:44
vote up 0 vote down

Emacs:

CTRL-LEFTSHIFT-RIGHTSHIFT-META-ALT-WINDOW-APPLE-X to exit.

:-)

Seriously, CTRL-F11 in Eclipse to re-run last, so as to avoid the stupid Run dialog box.

Or the infamous "." in vi to repeat the last command.

link|flag
vote up 0 vote down

ReSharper: Alt-Enter : "Fix the problem"

and maybe not most used but at least frequently used in Visual Studio:

Ctrl-K, Ctrl-M : add method stub, very useful for TDD

F9 : toggle breakpoint

link|flag
vote up 0 vote down

ctrl shift B - building solution

ctrl K F - to format xml

ctrl m o - to expand and collapse methods.

ctrl shift f - global find and replace

link|flag
vote up 0 vote down

I often used F12 for finding the declaration of the function/variable and Shift+F12 for finding all references.

link|flag
vote up 0 vote down
ctrl + shift + }

in visual studio: find matching brace.

link|flag
vote up 2 vote down

Resolve a type... i.e. add a "using" directive automatically:

[Ctrl]+. followed by [Ret]

The [Ctrl]+. brings up the smart-tag window; the [Ret] accepts the default choice.

for example:

StringBuilder[Ctrl]+., [Ret]

adds using System.Text; to the class header.

link|flag
indeed, very good shortcut. Happy I learned about that one. – Davy Landman Jan 14 at 14:38
Holy crap that's useful! I use the right-click version all the time, but that's gold. – ctacke Jan 14 at 14:56
vote up 0 vote down

In Eclipse: CTRL+SHIFT+R for finding a file

link|flag
vote up 0 vote down

Build, whatever that may be assigned to in the IDE of the Day.

link|flag
vote up 0 vote down

F7 to toggle between code-behind and code-in-front in ASP.NET

link|flag
vote up 0 vote down

vi/vim or ViEmu for Visual Studio extension.

hjkl for left, down, up and right respectively

link|flag
vote up 0 vote down

In Visual Studio,

CTRL+K, D to format the entire document.
F5 and CTRL+F5 to run solution with or without debugging.
CTRL+Space Trigger Intellisense dropdown.
"prop" TAB TAB for easy properties.

link|flag
vote up 1 vote down

CTRL + F to search

CTRL + I to incrementally search

CTRL + SHIFT + F to search the whole project

I do a lot of searching...

link|flag
vote up 2 vote down

For Eclipse:

  • CTRL + S to save
  • CTRL + space for code completion
  • CTRL + . and CTRL + , cycle down/up through compile errors
  • CTRL + 1 bring up quick fix menu for compile errors
  • ALT + SHIFT + L to extract local variable
  • ALT + SHIFT + M to extract a method

Otherwise the most useful ones for me are the version control shortcuts for my Eclipse SVN plugin.

Also, not an IDE shortcut, but perhaps the most important one I use, WINDOWS + L to lock my computer when I leave.

link|flag
ctrl + space for sure! – dotjoe Jan 14 at 14:42
vote up 1 vote down

Visual Studio,

F12 Jump to definition
SHIFT + F12 Find al references

CTRL + MINUS Jump back to previous cursor location
CTRL + SHIFT + MINUS Jump forward to last cursor location

CTRL + K, C Comment out currently selected code
CTRL + K, U Uncomment currently selected code
CTRL + K, F Format selected code
CTRL + K, D Format document

F5 Start Debugging
F6 Build Solution

F7 Switch to code view
Shift-F7 Switch to design view

These are the ones I use most...

PS. Microsoft released keybinding posters for Visual Studio. Here are the links to the C# ones.
VS C# 2005: Visual C# 2005 Keyboard Shortcut Reference Poster
VS C# 2008: Visual C# 2008 Keybinding Reference Poster

link|flag
vote up 1 vote down

In Visual Studio:

  • CTRL + T, A Run all tests
  • CTRL + T, C Run all test from this class
  • CTRL + T, T Run current test method
  • CTRL + T, CTRL + A Debug all tests
  • CTRL + T, CTRL + C Debug all test from this class
  • CTRL + T, CTRL + T Debug current test method
  • CTRL + SHIFT + SPACE Reshow parameter/overload list
link|flag

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