Tagged Questions
Keyboard shortcuts provide quick access to application or system actions via combinatorial key presses.
209
votes
122answers
15k views
Favorite Visual Studio keyboard shortcuts
What is your favorite Visual Studio keyboard shortcut? I'm always up for leaving my hands on the keyboard and away from the mouse!
One per answer please.
113
votes
21answers
41k views
What are the most useful Intellij IDEA keyboard shortcuts? [closed]
I did a bit of googling hoping to find a post on IDEA shortcuts similar to Jeff's post on Visual Studio shortcuts (Visual Studio .NET 2003 and 2005 Keyboard Shortcuts), but didn't really spot anything ...
60
votes
5answers
10k views
Eclipse Optimize Imports to Include Static Imports
Is there anyway to get Eclipse to automatically look for static imports? For example, now that I've finally upgraded to Junit 4, I'd like to be able to write:
assertEquals(expectedValue, ...
55
votes
6answers
25k views
Keyboard shortcuts with jQuery
How can I wire an event to fire if someone presses the letter 'g'?
(where is the character map for all the letters BTW?)
44
votes
13answers
8k views
Go to Matching Brace in Visual Studio?
Is there a way in Visual Studio 2008 to go from a closing brace to it's opening brace? I've found a fair amount of stuff about highlighting the brace, but nothing about moving the cursor to it.
42
votes
17answers
7k views
How do you get by without a Mouse? [closed]
I've been slowly using my mouse less and less over the past few years. As a developer who prefers the command line over IDE bloat: the less I move from my keyboard, the more productive I tend to be. ...
39
votes
6answers
6k views
Is there a standard keyboard shortcut to build the current project in Visual Studio?
I know that Ctrl + Shift + B launches a solution build, but I would like a shortcut that just builds the current project. Is a custom shortcut my only option?
Edit: Looks like a custom shortcut is my ...
38
votes
6answers
11k views
Eclipse jump to closing brace
What is the keyboard short cut in Eclipse to jump to the closing brace of a scope?
38
votes
28answers
5k views
Give me awesome Visual Studio keyboard short cuts!
I know a few that I like.
Alt + Shift + F10 then ENTER which automatically adds the "using" at the top if i'm referencing an object that I haven't put the namespace in for yet.
Ctrl + +
or
Ctrl + -
...
36
votes
12answers
29k views
Keyboard shortcut to paste clipboard content into command prompt window (Win XP)
Is there a keyboard shortcut for pasting the content of the clipboard into a command prompt window on Windows XP (instead of using the right mouse button)?
The typical Shift+Insert does not seem to ...
34
votes
5answers
9k views
Visual Studio Keyboard Shortcut to automatically add the needed Using statement
What is the keyboard shortcut to expand the little red line that gives you the menu where you can choose to have the necessary Using statement added to the top of the file?
My Googling skills have ...
33
votes
4answers
5k views
Google Chrome's Javascript console keyboard shortcuts
I would like to debug my javascript application using Google Chrome 3's developer tools. Everything fine and ok, until I actually want to start debugging. I can set breakpoints etc., but I don't want ...
33
votes
7answers
4k views
Are there shortcut keys for ReSharper's Unit Test Runner?
For obvious productivity reasons, I make an effort of learning and using as many of the keyboard shortcuts for the various Re# commands.
However, it seems that the unit test runner does not have any ...
33
votes
27answers
11k views
SQL Server Management Studio – tips for improving the TSQL coding process
I used to work in a place where a common practice was to use Pair Programming. I remember how many small things we could learn from each other when working together on the code. Picking up new ...
30
votes
9answers
21k views
Emacs on Mac OS X Leopard key bindings
I'm a Mac user and I've decided to learn Emacs. I've read that to reduce hand strain and improve accuracy the CTRL and CAPS LOCK keys should be swapped. How do I do this in Leopard?
Also, in Terminal ...
26
votes
35answers
5k views
What is your favorite Resharper/Visual Studio shortcut? [closed]
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 ...
25
votes
5answers
15k views
Best way to implement keyboard shortcuts in winforms?
I'm looking for a best way to implement common windows keyboard shortcuts (for example Ctrl-F, Ctrl-N) in my winforms app in C#.
The app has a main form which hosts many child forms (one at a time). ...
25
votes
110answers
5k views
Worst “muscle memory” keyboard shortcut? [closed]
What's the worst shortcut you have in your "muscle memory"?
For example, mine is CTRL-L: compiles the current object in Sybase Powerbuilder, but deletes the current line in Visual Studio.
22
votes
3answers
7k views
Block commenting in Ruby
Does Ruby have block comments?
If not, is there an efficient way of inserting # in front of a block of highlighted code in TextMate?
21
votes
6answers
4k views
Vim Dvorak keybindings (rebindings :)
Although I played with it before, I'm finally starting to use Dvorak (Simplified) regularly. I've been in a steady relationship with Vim for several years now, and I'm trying to figure out the best ...
20
votes
5answers
8k views
Visual Studio's keybindings for Eclipse
Does anybody have a keybinding scheme similar to VS 2005 available for Eclipse?
How to import it into preferences of Eclipse (I see only export button).
19
votes
16answers
10k views
Any shortcut to open file in vim?
I want to open a file in vim like in Eclipse using Ctrl + Shift + R, I type the file name and I get the options of all the files matching that name.
I know opening it normally like:
:tabe ...
19
votes
3answers
2k views
Can you organize imports for an entire project in eclipse with a keystroke?
Wouldn't it be nice to just do a keystroke and have eclipse organize all imports in all java classes instead of just the one you are looking at? Is this possible? Is there a keystroke for it?
19
votes
12answers
7k views
Making iTerm to translate 'meta-key' in the same way as in other OSes
In bash shell with emacs key-binding, you can use key combination like M-f, M-b to move one word forward or backward on the shell prompt respectively. Usually, the meta key is mapped to Alt key on ...
19
votes
13answers
4k views
Eclipse's Ctrl+click in Visual Studio?
After working for a few days with Eclipse Java I totally got addicted to pressing Ctrl and clicking on an identifier to go to its definition. Since then I've been looking for a way to achieve this in ...
18
votes
5answers
2k views
Globally override key binding in Emacs
How can I set a key binding that globally overrides and takes precedence over all other bindings for that key? I want to override all major/minor mode maps and make sure my binding is always in ...
18
votes
30answers
5k views
What are some useful TextMate shortcuts?
Macs are renowned (or bemoaned) for having an extensive number of shortcuts. However, OS X itself pales in comparison to the shortcut lists in TextMate and its bundles.
What are some useful keyboard ...
16
votes
1answer
2k views
Eclipse: How to go to a error using only the keyboard (keyboard-shortcut)?
Let's say I have a file with 10 lines and I have problem with the name of the package (or something) and the cursor is on the last line of the text.
How can I go directly to that line to see what is ...
16
votes
3answers
14k views
Keyboard shortcuts in WPF
I know about using _ instead of &, what I'm looking at is all the Ctrl + type shortcuts.
Ctrl+Z for undo, Ctrl+S for save etc.
Is there a 'standard' way for implementing these in WPF ...
15
votes
4answers
3k views
Shortcut key to select word in Eclipse
Is there any keyboard shortcut to select a word? Or may be it can be assigned some how?
15
votes
2answers
5k views
Is there a keyboard shortcut in Eclipse to fold the current method/block?
Hey, question says it all.
I have folding turned on in Eclipse (v3.4), and rather than having to click the little +/- in the page gutter, I'm wondering if there's a keyboard shortcut to just "fold the ...
14
votes
6answers
5k views
visual studio : short cut Key : Duplicate Line
Is there a shortcut for Duplicate Line in Visual Studio 2008?
Duplicate Line i.e. like Ctrl + J in Edit Plus or Crtl + D in Notepad++.
14
votes
3answers
3k views
Why does < C-a> (CTRL+A) not work under gvim on windows?
I'm trying to use the < C-a> (CTRL+A) shorcut under vim to increment a variable under the cursor. This works fine under vim running on Linux. However when I try to do this in gvim under windows it ...
14
votes
6answers
2k views
Disabling single line copy in Visual Studio
Is there anyway to disable the rather annoying feature that Visual Studio (2008 in my case) has of copying the line (with text on it) the cursor is on when CTRL-C is pressed and no selection is made?
...
13
votes
2answers
3k views
SVN key bindings not working in Eclipse
I installed Eclipse 3.6 64-bit on a fresh Windows 7.
I tried setting some key bindings using the Keys section of the preferences window, namely:
Alt + C - commit using SVN
Alt + U - update using SVN
...
13
votes
4answers
4k views
Visual studio keyboard shortcuts cheat sheet - desktop size
OK - this is pretty specific, i'm looking for a cheat sheet for visual studio keyboard shortcuts that I can set as my desktop bg.
so, something in a modest 1280 x 1024.
Something like this;
...
13
votes
14answers
2k views
Vim movement on other programs
I'm learning Vim and with it came the urge to use 'hjkl' and friends on every other program, including mouse operated programs like browsers.
How can I use these keyboard shortcuts, or something ...
13
votes
11answers
3k views
Is there a tool to quickly locate a file in Visual Studio similar to Eclipse's “Go to File” plugin
I've recently started a new job working with webdevelopment in .NET. Coming from a php and rails background i've been working mainly in Eclipse and NetBeans, along with some TextMate.
I find myself ...
13
votes
15answers
4k views
Reaching up to hit the escape key sucks (especially in vim) [closed]
Escape is almost as important as the enter key, used universally for "cancel". In vim, it's arguably more important than the space bar, making its location highly suboptimal.
What key remappings -- ...
13
votes
6answers
5k views
Mac OS X Terminal: Map option+delete to “backward delete word”
Tried to map it from Preferences -> Settings -> Keyboard, but the "key" combo box has only "forward delete" but no "delete". My keyboard on the other hand has only "delete" and no "forward delete"!
...
12
votes
2answers
2k views
Command key as Meta key in OS X Terminal.app
When i unckeck the 'Use option as meta key' box in Settings, and then
do Cmd-F (which i want to mean Meta-F for forward-word in bash) Terminal
gives me a 'find word' popup, which isn't what i want. ...
12
votes
5answers
679 views
Shortcut for “move to left editor” and “move to right editor” in Eclipse?
If I've got my Eclipse windows split vertically, is there any keyboard shortcut to move to the logical left/right editor?
For example, in the image blow, the right editor is selected, and I want to ...
12
votes
5answers
11k views
Xcode source automatic formatting
As a C# developer, I have become highly dependent on the automatic formatting in Visual Studio 2008. Specifically, I will use the CTRL + K , D keyboard shortcut to force things back into shape after ...
12
votes
7answers
4k views
How can I get Emacs style key bindings in Visual Studio?
How can I get Emacs style key bindings in Visual Studio? Is it available in Settings? Do I need a Plug-in?
11
votes
3answers
572 views
Enabling option-key shortcuts in MATLAB for Mac
Since R2009b, MATLAB has had marvelously customizable keyboard shortcuts through its Keyboard Shortcuts Preferences. This works very well for customizing shortcuts using command and control on a Mac.
...
11
votes
2answers
237 views
Hotkeys in webapps
When creating webapps, is there any guidelines on which keys you can use for your own hotkeys without overriding too many of the browsers default hotkeys.
For example I might want to have a custom ...
11
votes
2answers
3k views
Is there anyway to modify the keyboard shortcuts in eclipse?
Title more or less says it all. Specifically, I've become increasingly annoyed that in order to run an ant script I have to use alt-shift-x, q. But I think If I had this power I would many things I ...
10
votes
2answers
216 views
Command completion in mathematica : suggest rules/options
In current version of Mathematica these keyboard shortcuts are quite handy
Ctrl+K completes current command
GraphPl -> press Ctrl+K -> GraphPlot
Ctrl+Shift+K completes current command and ...
10
votes
3answers
714 views
How do i create a Delete-Line Keyborad shortcut in XCode 4? The XCode 3 solutions do not work anymore
In previous versions of XCode it was possible to create a key binding to delete the current line. There were different solutions and they are described for example here:
XCode: Delete line hot-key
...
10
votes
5answers
228 views
Is ctrl-s save universal for save or are there different combinations for different languages
I imagine that there are different combination, just looking for an affirmation. Or, are we developers really that english-centric?
If I were in Japan, using a word processor on some computer, would ...