keyboard-shortcuts

Eclipse: keyboard shortcut to move tabs around?

Is there any way to setup an Eclipse keyboard shortcut which will split the current editor vertically and put the current tab on one side? For example, turning this: Into: ...

AutoHotKey key SEQUENCE, not just single-key hotkey

I'm not stupid... really. How do you map a key SEQUENCE (ie: Ctrl-Q, F) in AutoHotKey. I've got Ctrl-Q down: ^q:: I've even got F: f:: The examples in the help files even show how to do two keystrokes in a row: Numpad0 & Numpad1:: But it just will not work with: ^q & f :: Or any of these either: LCtrl & q & f:: ^q & ^f:: ^q...

Add Watch Expression in Ecipse using keyboard shortcut

I need help adding a keyboard shortcut for adding a watch expression in Eclipse. I can add a watch by right-clicking in the "Expressions View", but having go back and forth between the keyboard and mouse cuts down on efficiency. Can anyone offer me any suggestions to fix this? ...

How to make Emacs (without GUI) differentiate between Ctrl+Shift+S and Ctrl+S?

I'm trying to teach Emacs standard shortcut keys. I use emacs23-nox version from Debian, often through SSH connection. One of those is Ctrl+Shift+S for SaveAs. The relevant part of configuration looks like this: (global-set-key (kbd "C-S") 'write-file) (global-set-key (kbd "C-s") 'save-buffer) but causes either both Ctrl+Shif...

In eclipse, ctrl-click goes to the declaration of the method I clicked. For interfaces with one implementation, how can I just directly to that implementation?

I often have to debug java code which was written so that there is an interface and exactly one implementation of that interface. For instance there would be an interface Foo with exactly one implementation called FooImpl. In the following code if I ctrl-click on doThings it'll jump to Foo.java when I actually want to go to FooImpl.java...

Visual Studio 2008 - Team Explorer - Keyboard shortcut

Is there a keyboard shortcut to switch to Team Explorer? For example, to switch to Solution Explorer it's CTRL+ALT+L. But I cannot find one for Team Explorer. Oi!? ...

Key Commands in WPF

How can I set key commands like if the user presses Ctrl + Shift + N, a new dialog or action happens. And do I have to make a new event for each key command? How can I do this. ...

Shortcut to collapse all documentation headers/comments in Visual Studio

Is there a way to collapse all documentation headers (/// comments) in the current file in visual studio (2008+)? ...

Cocoa global shortcuts?

Hi, I want to create a global shortcut for my app. I've used the 'cool new way' of doing this with the addGlobalMonitorForEventsMatchingMask method. The problem is, my events don't get "consumed": my shortcut includes the spacebar, so whenever I use the shortcut, Quicklook pops up when I'm in the Finder. How can I prevent this from hap...

How do I read custom keyboard shortcut from user in WPF?

In my application, I want to let users customize keyboard shortcuts, just like it's done in Visual Studio's keyboard options. The user can focus a blank text box and then type any shortcut he wants to assign to a command. The closest I've come to make it work is by subscribing to the TextBox.PreviewKeyDown event, setting it as handled t...

CodeRush XPress | Code Intelliassist Shortcut

Hi, I've installed coderush and wanted to refactor my code. I also tried to do some things they did in the introduction video. But the only way I get into the coderush intelliassist is the right-click context menu in the editor. Can you help me to change the short cut? By default the short cut should be CTRL + ' I'm using Windows 7 Pro...

Can you 'kill' to the end of a line in Visual Studio 2008?

In Unix-y editors, you can often press CTRL-k (kill) to delete everything after the text caret position on the current line. Is there an equivalent "single action" in the Visual Studio 2008 text editor? ...

Shortcut Keys in Java

How could I (for example) maximize the window from tray icon when a specified key combination is pressed? edit: So how can I detect for example when user presses Ctrl+M? ...

Display keyboard shortcuts in Visual Studio context menus

Most of the time I use Visual Studio 2008. When right-clicking in this product, a context menu appears. I'd like to see the keyboard shortcuts bound to each menu item in the context menu. Does anyone know how to display these? ...

2 basic Textmate shortcuts 'don't save' and 'replace all'

Ok, maybe they're system shortcuts. I've googled (just a bit) and couldn't find an answer. Maybe there isn't any :) Still.. I love keyboard and I use quite a few in TextMate but just realise I still use the mouse for 2 of the most common actions: How do I press search and replace after the S/R dialog box is up? - if you press enter i...

Eclipse Key Preferences; Debugging; Adding A "Watch Expression" Using The Keyboard

How do I define a custom key binding in eclipse? I have to admit, for a FREE PRODUCT, Eclipse really delivers. However, sometimes I have to scratch my head about certain missing features... Eclipse has over ELEVEN HUNDRED different key bindings. I would like to use one of those KeyBindings to add a "Watch" Expression to the express...

Problem With PHP Eclipse Key Binding

I have to admit, for a FREE PRODUCT, Eclipse really delivers. However, sometimes I don't understand certain missing features... Eclipse has over ELEVEN HUNDRED different key bindings. I would like to use one of those KeyBindings to add a "Watch" Expression to the expressions window, while debugging. Here is an additional screensh...

make AppleScript program that listens systemwide for shortcuts

I'd like to create some kind of background process that listens to all keystrokes event and acts consequently (for example does some action if CMD-A is pressed while in Finder.app, or more complex things, like sequences to create shortcuts like in emacs..) But how can I listen to keypresses systemwide on SnowLeopard? I thought of Apples...

How to use short cut keys to insert get set code of data member in visual studio?

How to use short cut keys to insert get set code of data member in visual studio? I think it is some tab. ...

Multiple Key Gestures for custom keyboard shortcuts in WPF

Does anyone know if it's possible to have key combinations for keyboard shortcuts in WPF? Right now if I want to use CTRL + S as a shortcut I can do the following: InputGestures.Add( new KeyGesture( Key.S , ModifierKeys.Control )); But if I want to use CTRL + S, D ... I don't have an overload that takes the "D". Is there a way to ov...