Questions tagged [keymapping]

keymapping refers to binding keyboard input to specified output or specified commands

keymapping covers configuration techniques and scripting, rather than tools and devices.

References

384 questions
0
votes
2 answers

How to create keymap (shortcut) for opening/navigating certain file in PhpStorm/IntelliJ?

Is there any way how to open/navigate certain file in current project just by hitting one key? How to map the shortcut to do this? For example I have three files "file-one.php", "file-two.php" and "file-three.php" and when I press F12, editor would…
Manny
  • 529
  • 1
  • 8
  • 22
0
votes
1 answer

Vim keymaps in atom

As far as I understand, there is no way to run .vimrc from atom in vim-mode-plus, but I can still use atoms way of binding keys using keymap.cson. How can I move the keys H-J-K-L one key right (J-K-L-Ø, since I have a Norwegian keyboard) using…
0
votes
1 answer

Does anyone know the ST3 command for Key Bindings?

I've been playing with ST3 settings and key bindings but I've run into something strange. I can't seem to be able to add a key binding to open the "Key bindings" I want to add this shortcut (⌘+ctrl+,) to the Key Bindings menu option. [ { "keys":…
luis.madrigal
  • 1,366
  • 1
  • 15
  • 31
0
votes
1 answer

Add a command keymap ATOM

I would like to add a command in the ATOM keymap. ALT+j : Select all occurences But I don't know how it's working, I've just add cmd+d, easily. This is what I have right now : 'body': 'cmd-,': 'application:show-settings' 'cmd-N':…
Emilien
  • 2,701
  • 4
  • 15
  • 25
0
votes
1 answer

quick fix keymap entry in IntelliJ IDE keymap

I was wondering if anyone knows's a keymap entry in IntelliJ that is equivalent to NetBeans alt + enter? I have looked all over and cant find anything... :/
kinger6621
  • 1,503
  • 2
  • 10
  • 16
0
votes
1 answer

Virtualbox guest Alt key works as AltGr

I have a Windows 10 as main os on my laptop and i have a virtual machine with Debian + i3wm with Virtualbox. I code on Vim (terminal text editor) and i have many shortcuts that use (Left) Alt key but my os have assigned by default (Right) AltGr…
lucasmenendez
  • 116
  • 1
  • 11
0
votes
1 answer

Apply different key mappings when within or outside a comment

I have the following key mappings in my ~/.vimrc " Format paragaph au FileType markdown nnoremap gwip " Send current line to tmux usind SendToTmux au FileType python,sh,zsh nnoremap yy:call SendToTmux(@")j I…
Thomas Möbius
  • 1,702
  • 2
  • 17
  • 23
0
votes
1 answer

How to navigate in groups (not tabs) in tool windows

I'm trying to use Intellij Idea only with the keybord. How can I navigate between groups/panels (don't know the exact term) within a tab of a tool window? For example in the Debug tool window → tab debugger how to switch from the Frames panel to…
Siebe Dom
  • 1
  • 1
0
votes
1 answer

Sublime text keymap: Switch to tab number [NUM] in rubymine

I have recently switched from sublime text 3 to rubymine which is of great benefit. But i am missing one functionality. In sublime text command + [NUM] would switch to tab number [NUM]. but in rubymine i cant seem to find an action similar to this…
TamRock
  • 1,490
  • 1
  • 11
  • 27
0
votes
1 answer

KeyStroke with keys 1-9 does not work with JTextComponent's Keymap

For some unknown reason, this code doesn't work. JTextComponent component = new JTextArea(); Keymap keymap = component.getKeymap(); keymap.addActionForKeyStroke(KeyStroke.getKeyStroke(KeyEvent.VK_1, InputEvent.ALT_DOWN_MASK), myAction); It never…
user3838784
0
votes
2 answers

Vim: mapping to switch window and fill screen

I have in my .vimrc the following lines, which lets me switch windows with ctrl+hjkl: nnoremap h nnoremap j nnoremap k nnoremap l These are fine for my desktop computer, but on my netbook, I want to have…
Zoey Hewll
  • 4,788
  • 2
  • 20
  • 33
0
votes
2 answers

How to remap my Backspace to a 'd' while in Visual Mode with Vintage in Sublime

While in visual mode with if you highlight some text and press backspace the cursor will continue to move back and continue to highlight more of your code; however, if you hit the d key, the highlighted text will be deleted and sublime will move…
mbigras
  • 7,664
  • 11
  • 50
  • 111
0
votes
1 answer

How to make a key binding that will jump over the code completion in sublime unless it's a {} or []

I found a great keybinding that jumps over sublimes code compeletion by hitting enter here's the link: quora. My code in my keymap file is: // BEGIN keymaps for skipping to the end of " ) and ] code compeletion { "keys": ["enter"], "command":…
mbigras
  • 7,664
  • 11
  • 50
  • 111
0
votes
2 answers

VIM special chars without shift key

I write a lot of code and tired of pressing shift each time I need a special character. And since I use special chars much often, then numbers, I want to reverse shift behavior on them. So, if I type <4> I'll get '$' and if I type +<4> I'll…
Andrew
  • 8,330
  • 11
  • 45
  • 78
0
votes
1 answer

Remapping Keys on Application

In my program, I want to be able to maybe input "E" on my keyboard and have it output on the textbox as a different letter, e.g. "F". What's the most effective way to do this without clashes in sending keys? private void textBox_KeyDown(object…
Jed5931
  • 265
  • 1
  • 2
  • 8