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
|
1
|
What are the most useful keyboard short-cuts in an IDE I know of Visual Studio:
I wish there were Eclipse like functionality below:
|
||||||||||
|
closed as not a real question by Rob Jan 14 at 15:00 |
|
|
Visual Studio: F5 or Ctrl-F5 - debug/execute without debug |
|||
|
|
|
|
CTRL+F I'm always searching for something! |
||
|
|
|
|
Visual Studio
|
||
|
|
|
|
Crtl + Z: Undo! |
||
|
|
|
|
In Visual Studio: F12 on a method or variable to go to the method source or variable definition. |
||
|
|
|
|
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. |
||||||||
|
|
|
If you are using resharper (highly recommended) these are the biggies:
|
||
|
|
|
|
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. |
||
|
|
|
|
Ctrl + C & Ctrl + V |
||||
|
|
|
Visual Studio: CTRL-R + CTRL-T Runs unit tests in current scope (which I usually do more often than running the app) |
|||
|
|
|
Emacs:
:-) 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. |
||
|
|
|
|
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 |
|||
|
|
|
|
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 |
||
|
|
|
|
I often used F12 for finding the declaration of the function/variable and Shift+F12 for finding all references. |
||
|
|
|
|
in visual studio: find matching brace. |
||
|
|
|
|
Resolve a type... i.e. add a "using" directive automatically:
The for example:
adds |
||||
|
|
|
In Eclipse: CTRL+SHIFT+R for finding a file |
||
|
|
|
|
Build, whatever that may be assigned to in the IDE of the Day. |
||
|
|
|
|
F7 to toggle between code-behind and code-in-front in ASP.NET |
||
|
|
|
|
vi/vim or ViEmu for Visual Studio extension. hjkl for left, down, up and right respectively |
|||
|
|
|
|
In Visual Studio, CTRL+K, D to format the entire document. |
||
|
|
|
|
CTRL + F to search CTRL + I to incrementally search CTRL + SHIFT + F to search the whole project I do a lot of searching... |
||
|
|
|
|
For Eclipse:
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. |
|||
|
|
|
Visual Studio, F12 Jump to definition CTRL + MINUS Jump back to previous cursor location CTRL + K, C Comment out currently selected code F5 Start Debugging F7 Switch to code view These are the ones I use most... PS. Microsoft released keybinding posters for Visual Studio. Here are the links to the C# ones. |
|||
|
|
|
|
In Visual Studio:
|
||
|
|