keyboard-shortcuts

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 to debug using a mouse but using keyboard. In Firefox+Firebug I can use F10, F11 and F8 for stepping over, into and run debugged script. ...

Applying space formatting in Visual Studio

In vim, if you, say, copy-paste a block of code into a file and it gets all wonky, you can hit == or =G to apply space formatting to the line (or to the end of the file). Is there a way to get this functionality in Visual Studio 2008? I found this gem: Ctrl-K, Ctrl-F Applies the indenting and space formatting for the language as spe...

Using the ALT key on Komodo for Mac OS X

I am using the Emacs keybinding on Komodo IDE where Komodo uses the command key for "Meta" by default. So you press Command-X when you normally press Alt+X for Emacs on Linux. I want to use the actual Alt key .. so when I tried to assign Alt+K, Komodo informs that "This key combination is not available" (see screenshot below) How do ...

Keyboard shortcut to go to end of line in Windows

Stupid question. I hate using the "End" key to go to the end of the line because its not within easy reach on my keyboard. Are there any other better shortcuts to go to the end of the line or is there any where I can tell Windows to use another hotkey to accomplish this? Thanks. ...

How do I associate a keypress with a DelegateCommand in Composite WPF?

I am building a composite application using CAL/Prism. The main region is a tab control, with multiple types of views in it. Each view has a custom set commands that it can handle which are bound to toolbar buttons at the top of the window. I've done this before in non-CAL apps by simply setting the InputBinding on the command, but I hav...

Monitoring general keyboard shortcuts in Windows (Ex. Ctrl twice to bring up Google Desktop Search)?

Google Desktop Search has this nice feature of catching monitor shortcuts (such as CTRL + CTRL) while running in the background. Once the event is caught, the desktop search bar is being shown. Is there a way to simply implement this in C#? ...

Keyboard shortcut synchronization with Eclipse and IDEA?

Hi, My time spent programming is split between what I do at work, and the programming I do at home in my spare time. At work, we use Vista machines and IntelliJ IDEA 8, whilst at home I use Mac OS X and Eclipse. As you can imagine, my ability to easily switch between the two is getting more difficult as I find the keyboard shortcuts ar...

Is there a keyboard shortcut to quickly find and open a file in Visual Studio 2005/2008 like how they do it in TextMate?

Is there a keyboard shortcut to quickly find and open a file in Visual Studio 2005/2008 like how they do it in TextMate? In textmate Command T in Textmate brings up something that you can type a few key which would display all relevant files and allow you to quickly select one, Command T back and forth also allows you to quickly altern...

Map some keystroke combination to the arrows

I'm tired of moving my hands to reach for the arrows in the keyboard. So I'd really like to be able to use something like Ctrl+Alt+{I, K, J, L} to do the same as the {up, down, left, right} keys, respectively. Having this configured under Windows for Eclipse would be enough for my use case, but is there a general solution for Windows? H...

Visual Studio Shortcuts

In VC6 i could navigate between compilation errors with F4 Whats the appropriate key in VS2008? Thanks ...

Setting up keyboard shortcuts to jump to closest input fields

Is there simple JavaScript or jQuery script to navigate around form fields, similar to what phpMyAdmin does with dynamic fields. When you click CTRL+LEFT or CTRL+DOWN it "tabs" to the next field. This is extending from the default TAB (go to next) and SHIFT+TAB (go to previous). I want the navigation to be a bit more extensive by adding...

How to edit a watch expression in visual studio 2008 with the keyboard?

In visual studio 2008, when the focus is on a watch expression in the watch window, how can I edit this expression without double-clicking the mouse? In visual C++ 6, it was the obvious: the F2 key. This is the consistent Windows behavior in listviews, e.g. for renaming a file in Explorer, editing a cell in Excel, etc. For some reason ...

what is the shortcut key for opening a resource in RAD 6.0? Ctrl + Shift + R !?

This may be a basic question, but I'm still looking for the answer. I've been using Eclipse IDE for a long time and I know the shortcut ket 'Ctrl + Shift + R' which will open the resources dialog box. Recently I switched to RAD 6.0 IDE (as per project need), and I could not use the shortcut 'Ctrl + Shift + R' in RAD 6.0. The shortcut '...

Paste multi-line string into GVIM at cursor position

When I copy a two-line text from (e.g.) a PDF opened in Acrobat Reader into gvim using CTRL-V, the text is inserted above the line in gvim where I was positioned, instead of at the position where my cursor is. (scenario: I want to copy a document title that is spread over two lines and paste it in between a html tag in gvim). If I do th...

How to close all Tool Windows In VS2008 with single key shortcut?

I guess the title says it all, I am looking for to bind or use an existing shortcut to close all visible tool windows in VS2008. There was an add-in for VS2005 to do this, but it doesn't seem to work in VS2008. Thanks! ...

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

Java: How to add a shortkey to a component

Hello, In the JMenuItem-class you can add a shortkey. Is this possible to add this shortkey to a component or the application without using a JMenu. Martijn ...

Is there a Visual Studio 2008 keymap profile for Netbeans?

I know there are keymap profiles for Eclipse and Idea that reflect the VS 2k8 key mapping / shortcuts experience quite well, but do you know where I can find one for my IDE of choice, Netbeans? Could importing from another IDE be possible as well? Many thanks, sk ...

Cutting text from IPython shell using Ctrl-X is broken

I use IPython very frequently and happily. Somehow, cutting text from the shell using the keyboard shortcut, Ctrl-X, is broken. Actually, I have a few different installations of IPython. In some of the installations, the shortcut works; in the others, it doesn't work. What might be the reason for this? Where should I look into? ...

How do I listen for a keyboard combination globally?

How would I have my C# program listen for a specific keyboard combination (say, CTRL+ALT+F2) globally. Even if my application is minimized I would want it to intercept this and do something. ...