Skip to content

Instantly share code, notes, and snippets.

@anatooly
Last active September 24, 2018 21:31
Show Gist options
  • Save anatooly/ed7ae57178e16b8bdcff to your computer and use it in GitHub Desktop.
Save anatooly/ed7ae57178e16b8bdcff to your computer and use it in GitHub Desktop.
Atom.io keybindings/shortcuts like JetBrains (PhpStorm/WebStorm)
'.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'
@Wildhoney
Copy link

@tonyxiao Append it to your ~/.atom/keymap.cson file.

@progsmile
Copy link

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