keyboard-shortcuts

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 + - Which moves you back and forward to which file and method you are/were looking at which is very handy when used in combination with "Go To Def...

Using shadowbox disables keyboard shortcuts?

So my site uses shadowbox (http://mjijackson.com/shadowbox/) to do display some dynamic text. Problem is I need the user to be able to copy and paste that text. Right-clicking and selecting copy works but ctrl+c doesn't (no keyboard shortcuts do) and most people use Ctrl+c right? You can see an example of what I'm talking about here: ...

Does anyone know the shortcut to open a file within your solution

In visual studio 2008 + Resharper? Thanks! ...

Favorite Windows keyboard shortcuts

I'm a keyboard junkie. I love having a key sequence to do everything. What are your favorite keyboard shortcuts? I'll start by naming a couple of mine: 1 - Alt-Space to access the windows menu for the current window 2 - F2 to rename a file in Windows Explorer ...

Keyboard shortcut for restoring applications from the Mac OSX Dock?

Is there a keyboard shortcut to restore a minimised application window from the Dock? Almost all Apple Mac OSX applications respond to the Apple+M command which minimises the current application window to the Dock, which is fine. I can then use Alt+Tab to cycle through my running applications - including the minimised application, but ...

How to jump to a class definition in CodeRush

Just downloaded the CodeRush trial version and I can't easily find the one feature that I really wanted. I would like to be able to start typing a class name and to jump to its definition, sort of like the quick navigator but I want it to search in closed files within my solution as well as open ones. I know R# has that ability, I assu...

How do I assign a keyboard shortcut to a VBA macro in Outlook 2007?

How can I assign a keyboard shortcut to a VBA macro in Outlook 2007? I know how to create a tool for the macro and put it in a menu with an underscore shortcut. This solution requires me to use a shortcut of ALT-{menu key}-{tool key}. What if I want to assign it to ALT-F12 or something like that? The Visual Basic Editor is assigned to ...

How can I listen in on shortcuts when the app is the task bar in C#

An example of an app that does this is Enso, it pops up when you press the caps lock. ...

how to implement shortcut key combination of CTRL or SHIFT + <letter> through javascript?

ASP.NET 2.0 web application, how to implement shortcut key combination of CTRL + , preferably through javascript, to make web application ergonomically better? How to capture multiple-key keyboard events through javascript? ...

Is there an Eclipse command to surround the current selection with parentheses?

Is there an Eclipse command to surround the current selection with parentheses? Creating a template is a decent workaround; it doesn't work with the "Surround With" functionality, because I want to parenthesize an expression, not an entire line, and that requires ${word_selection} rather than ${line_selection}. Is there a way that I ca...

Vim shortcut for adding arguments to a function

Is there a Vim shortcut for jumping to the argument list of the current function? I often find myself needing to mess with the argument list of a function, and it's kind of annoying to have to do ?def or ?function or 10k or what-have-you until I finally get to it, then /( or t( or 5e to get to the right position in the argument list, an...

What is your favorite Resharper/Visual Studio shortcut?

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 "S...

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. ...

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 shortcuts you use? ...

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 shortcuts, code snippets etc. with time significantly improved our efficiency of writing code. Since I started working with SQL Server I have bee...

In bash, environmental variables not tab-expanding correctly

In bash, environmental variables will tab-expand correctly when placed after an echo command, for example: echo $HOME But after cd or cat, bash places a \ before the $ sign, like so: cd \$HOME If I use a variable as the second argument to a command, it won't expand at all: cp somefile $HOM What mysterious option do I have in my ...

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? I know of the option to disable copying blank lines. But this is driving me crazy as well. ETA: I'm not looking to customize the keyboard...

[VS2008] Shortcut to switch between markup and code

Using Visual Studio 2008 Team Edition, is it possible to assign a shortcut key that switches between markup and code? If not, is it possible to assign a shortcut key that goes from code to markup? ...

Visual Studio Context Menu Shortcut

Does anyone know the keyboard shortcut in Visual Studio to open the context menu? i.e The equivalent of right clicking. Thanks. ...

Keyboard shortcuts in an XBAP

I would like to support keyboard shortcuts in my WPF XBAP application, such as Ctrl-O for 'Open' etc. How do I disable the browsers built-in keyboard shortcuts and replace them with my own? ...