keyboard-shortcuts

Visual Studio 2010 move cursor to other side of auto-created tag

This should be a fairly simple question, but I can't seem to find the answer. Visual Studio automatically creates the closing tags in the code view of aspx pages. For example: <h2>|</h2> When it does this the cursor conveniently stays in between the two tags so that you can add what ever you need to. Now that you've added your cont...

Rebind C-space in Emacs

I've tried various version to no avail: (global-set-key (kbd "C-<space>") 'tempo-complete-tag) (global-set-key [C-space] 'tempo-complete-tag) I'm using CUA mode and running Emacs on Ubuntu, version: GNU Emacs 23.1.50.1 (x86_64-pc-linux-gnu, GTK+ Version 2.18.0) of 2009-09-27 on crested, modified by Debian When I run tempo-complete-...

XCode Forward/Back Keyboard Shortcut? (v3.2 broken)

Back Arrow Broken In XCode 3.2 Is there keyboard command to go back/forward one file at a time. XCode 3.2 changed the behavior of Cmd-Opt <-- and -->. As noted in another question, they do not operate on a file level like in previous versions of XCode, but on an "edit point", making it cumbersome to flip through a list of files (the q...

How do I get Emacs bindings in Textmate?

In Textmate: Power Editing for the Mac, the author says that Textmate has Emacs key bindings. When I try to use them in Textmate some work and some don't work. For example C-n moves the cursor down one line, but C-p runs some command that gives me weird output (it doesn't move up one line). Is there a way in Textmate to lookup what a ...

JQuery handling multiple key presses in IE and Firefox

Hi, I'm working on handling the multiple key presses with jQuery. I have two handlers: 1. keyDownHandler 2. keyUpHandler keyDownHandler detects if the certain key has been pressed, if yes it sets a certain boolean value to true and carries on with the processing. keyUpHandler resets the boolean value to false. All this is required...

Recognize the 2 key from the keyboard or from the numpad

Hi, I would like to add keyboard short-cuts to my web application. But for one of them, I need to be able to distinguish between the digits entered with the numpad from the one entered above the qwerty chars (my use case is for French keyboards, so it's azerty, but I don't think it's a problem). I'll combine it with a detection of the ...

How to get a combination of keys in c#

How can I capture Ctrl + Alt + K + P keys on a C# form? thanks ...

How to use custom keyboard shortcuts within CKeditor with jQuery?

I have replaced the textarea my users use to edit content with CKeditor. Before this change, users were used to save there text by pressing CTRL + S. This is done through the jQuery Hotkeys Plugin. Since CKeditor puts its text editor within an iframe the shortcut does not work when editing text. I hope someone can help me find a soluti...

Disable keyboard-shortcuts in Internet Explorer

Does anybody know how can I programmatically disable the keyboard-shortcuts in IE? For example, i have a textbox in my web page, with its value taken from a barcode reader. But the barcode contains the sequence Shift-Ctrl-J + Enter. Shift+Ctrl+J opens the IE feeds and Enter opens the selected feed in the browser, so this is a serious p...

How to control links and navigation in a website using arrow keys (without using flash)?

In this website, an anchor link (right blue arrow) is activated with the right arrow key. I'm not sure if a new page is loaded when that anchor link is activated. How can I accomplish that effect? The page also goes to the top when the up (upper?) arrow key is pressed. How can I accomplish that too? ...

Pause/Break as a Keyboard ShortCut (Win32, *Possibly* Delphi-specific)

Is it not possible to use the Pause/Break key in keyboard shortcuts? I know I can respond to the Pause/Break key, e.g. procedure TForm1.FormKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState); begin if Key = VK_PAUSE then ShowMessage('VK_PAUSE pressed'); end; However, I am unable to respond to the Pause/Break key usin...

Where does VS2010 store modified keyboard shortcuts?

I have this strange behaviour in VS2010 where any modifications I make to keyboard shortcuts or the text for top-level menu items (File, Edit, View, ...) are reset to their default values the next time I restart VS. I suspect that one or more of the add-ins I've installed could be the culprit. So far though, I have had no success in stop...

Hotkey for copying text as you type

When I'm programming I often use copy and paste, which requires me to grab the mouse, highlight the text, and press ctrl+C (I'm using Windows BTW). Is there any hotkey or solution out there for a keyboard short cut that I could press and have it start copying each character I type? It would be such a godsend to get rid of that whole high...

How to toggle commenting and uncommeting code in IDEA?

Is there a way to comment/uncomment a block of selected text in IDEA? ...

C# text import from external window

I'm working on an existing project that has a text import tool written in C#. It essentially shuffles to the last window that had focus, copies the text, switches back and pastes the text in the textbox. To do this it essentially issues keyboard commands so: "Alt+Tab", "Ctrl+A", "Ctrl+C", "Alt+Tab" and then finally get the text from the ...

short cut to view function list in VS2008 which is right under Document tabs

is there a short cut key to view function list in VS2008 which is right under Document tabs ...

How can I get Eclipse to launch Ant in one keypress?

I changed the keybinding for Run Ant Build to F10 when Editing Javascript Source and also tried In Windows. In both cases F10 opens the file menu. If I press F11 while the ant build.xml is highlighted, it runs. If I press F11 any other time Eclipse opens up the Debug Configuration dialog. If I try Ctrl+F11 it tells me there are no launc...

Disable Alt+F4 in UserControl

Hello, i have some user control and i want to disable Alt+F4 oportunity for the end user. When my User Control shows, there is opportunity to close it with Alt+F4, then program goes to base class in the method: protected override void OnClosing(System.ComponentModel.CancelEventArgs e) { //Content = null; // Remove child from lo...

Eclipse: Keyboard shortcut for switching between consoles?

In Eclipse (I'm using version 3.6 aka Helios), you can use Alt+Command+Q C (on Mac OS X or Alt+Shift+Q C on Windows/Linux) to give focus to the Console View. Ok. That's good. My problem is that in order to switch between consoles inside that view you have to click the ridiculously small arrow next to the 'Display Selected Console' icon....

type a simple "©" in STS on a macbook pro

Hi, I have a simple but realy annoying problem: I just can't manage to type a simple "©" in STS (SpringSource Tool Suite) on my macbook pro. In any other editor (even plain eclipse) or application I use "alt + G" as a shortcut, but this does not work in my STS 2.3.3.M2 and was also not working with 2.3.2. Any idea whats wrong? thanks ...