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: ...
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: ...
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...
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? ...
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...
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...
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!? ...
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. ...
Is there a way to collapse all documentation headers (/// comments) in the current file in visual studio (2008+)? ...
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...
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...
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...
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? ...
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? ...
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? ...
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...
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...
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...
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? I think it is some tab. ...
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...