Last active
September 24, 2018 21:31
-
-
Save anatooly/ed7ae57178e16b8bdcff to your computer and use it in GitHub Desktop.
Atom.io keybindings/shortcuts like JetBrains (PhpStorm/WebStorm)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'.platform-win32, .platform-linux': | |
'alt-f1': 'tree-view:reveal-active-file' | |
'.platform-linux, .platform-linux .command-palette atom-text-editor': | |
'ctrl-shift-a': 'command-palette:toggle' | |
'.platform-linux': | |
'ctrl-shift-n': 'fuzzy-finder:toggle-file-finder' | |
'.platform-linux atom-text-editor': | |
'ctrl-alt-shift-n': 'symbols-view:toggle-file-symbols' | |
'body': | |
'ctrl-f4': 'core:close' | |
'body .native-key-bindings': | |
'alt-j': 'native!' | |
'.platform-win32 atom-text-editor, .platform-linux atom-text-editor': | |
'alt-j': 'find-and-replace:select-next' | |
'atom-workspace atom-text-editor:not([mini])': | |
'ctrl-d': 'editor:duplicate-lines' | |
'atom-text-editor:not([mini])': | |
'ctrl-y': 'editor:delete-line' | |
'atom-text-editor': | |
'ctrl-w': 'editor:select-to-end-of-word' |
thanks) also tabs quick moves :
'atom-workspace atom-text-editor':
'alt-left': 'pane:show-previous-item'
'alt-right': 'pane:show-next-item'
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@tonyxiao Append it to your
~/.atom/keymap.cson
file.