Questions tagged [hotkeys]

Hotkeys provide quick access to user interface application or system actions via combinatorial key presses.

Good software design assumes no point-and-click device present, and allows the user to access all application commands via the keyboard.

On Windows, main menu shortcuts are usually indicated by it's underlined letter, called a mnemonic. They are activated like so:

  • hold Alt
  • tap the mnemonic
  • release Alt

Menu item shortcuts could have mnemonics as well, and are activated by pressing their mnemonic key (no Alt-modifier necessary at this point). These menu items may also have application-wide shortcuts, normally displayed next to the menu item itself.

Some applications implement system-wide global shortcuts, which activate regardless of which application has the user's focus. These are called hotkeys, so see the [hotkey] tag for those questions.

Shortcuts can consist of a combination of Alt/Option, Ctrl, Shift, (on Macs), and function and character keys. Some applications use key-of-chord like shortcuts, where you press a combination (chord) of the above keys in sequence.

Consult the application's user manual for details on what shortcuts it provides.

Useful Links

1159 questions
25
votes
3 answers

In visual studio 2010 what is/how to set the hotkey to pin and unpin an active pane?

I often run tests and need the test-result pane to be pinned. In other time, I mostly work with writting codes and compile - I prefer to have the output pane (which shared the same space with test-result pane) automatically viewed while compiling…
Nam G VU
  • 33,193
  • 69
  • 233
  • 372
25
votes
2 answers

Is there a Hotkey to pin / auto hide a panel like Solution Explorer?

Is there a Hotkey to pin / auto hide a panel like Solution Explorer? It would be a good combinations with CTRL+ALT+L which focus Solution Explorer.
24
votes
3 answers

Best way to tackle global hotkey processing in c#?

Possible Duplicate: How can I register a global hot key to say CTRL+SHIFT+(LETTER) using WPF and .NET 3.5? I'd like to have multiple global hotkeys in my new app (to control the app from anywhere in windows), and all of the given…
jeevan
23
votes
2 answers

Visual Studio Smart Indent?

Is there a way to auto indent (like ctrl+i in MATLAB) FORTRAN code in Visual Studio.
dewalla
  • 1,317
  • 8
  • 18
  • 42
22
votes
6 answers

React on global hotkey in a Java program on Windows/Linux/Mac?

A Java6 application sits in the system tray. It needs to be activated using a hotkey (e.g. Super-G or Ctrl-Shift-L etc) and do something (e.g. showing an input box). How do I do that on: Windows (XP or Vista) OS/X Linux (Gnome or KDE)
Stephan Wissel
21
votes
5 answers

Cocoa: setting the key equivalent

i want to set the key equivalent of a menuitem with [menuitem setKeyEquivalent:(NSString *)s], how can i do that if i have multiple modifiers ? i tried: unichar shift = NSShiftKeyMask, cmd = NSCommandKeyMask; NSMutableString *keyequiv =…
Eike Cochu
  • 3,249
  • 7
  • 34
  • 57
21
votes
3 answers

How to select item by typing a keyboard letter key in WPF combobox?

I have a WPF ComboBox and I want to go to items that start with (for example) "e" in the ComboBox when I type that letter. How? My XAML code:
NetSide
  • 3,849
  • 8
  • 30
  • 41
21
votes
4 answers

resharper or VS hotkey to switch places two parameters, is there such a thing?

it something like this method(a,b); and you hit some hotkey and you get method(b,a); is there such thing ?
Omu
  • 69,856
  • 92
  • 277
  • 407
20
votes
7 answers

"Open Type" command does not respond in Eclipse workspace

In Eclipse, you can use Ctrl + Shift + T to search for a type. Unfortunately, Eclipse does not respond to this hotkey in one of my workspaces. I am running IBM AST 6.1, which is built on Eclipse 3.2.1 (see…
jyoungdev
  • 2,674
  • 4
  • 26
  • 36
18
votes
1 answer

Intellij basic complete ctrl + space is not working on mac

I am running IntelliJ on my macOS Big Sur and ctl + space for basic complete does not seem to work. I looked under Preferences -> keymap -> Code Compleation -> Basic, and it seems in order. any ideas?
Stempler
  • 1,309
  • 13
  • 25
18
votes
8 answers

Add application launch shortcut in Eclipse?

I've been programming Android in Eclipse for about a year now and I have always launched my app by right clicking on my project name in the project explorer, followed by "run as", then "Android Application". There has to be a better way... Is there…
Brad Hein
  • 10,997
  • 12
  • 51
  • 74
18
votes
2 answers

Visual Studio find out what command is assigned to an hotkey

I've installed a Visual Studio plugin that redefines some hotkeys. I need to come back to the standard hotkeys of Visual Studio for some of them. I know that under Tools->Options->Environment->Keyboard I can redefine the hotkeys, and I did it. The…
Tobia Zambon
  • 7,479
  • 3
  • 37
  • 69
17
votes
1 answer

Will this hotkey work for Mac users?

I'm using the following code to catch when people press Ctrl+Shift+P for my chrome extension: window.addEventListener("keydown", function(event) { var modifier = event.ctrlKey || event.metaKey; if (modifier && event.shiftKey && event.keyCode ==…
flea whale
  • 1,783
  • 3
  • 25
  • 38
17
votes
2 answers

What is the hotkey to jump between split windows in Visual Studio 2008

I've split the code window for a long css file into two sections, top half for viewing one area of code, bottom area for viewing another area of the code. I did this by dragging the splitter on the top right of the code editor to the middle of the…
MedicineMan
  • 15,008
  • 32
  • 101
  • 146
17
votes
3 answers

what do the parameter values in AppleSymbolicHotKeys plist dict represent?

tl;dr what does the first parameters value in com.apple.symbolichotkeys:AppleSymbolicHotKeys represent? details... the AppleSymbolicHotKeys structure the OS X symbolic hotkeys plist file…
nrser
  • 1,287
  • 1
  • 13
  • 23
1 2
3
77 78