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…
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…
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":…
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':…
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... :/
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…
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…
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…
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…
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…
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…
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…
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":…
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…
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…