Skip to content

Instantly share code, notes, and snippets.

@omeha2
Last active July 2, 2020 10:37
Show Gist options
  • Save omeha2/7d465d534dc5d5f573d900dcb224f88c to your computer and use it in GitHub Desktop.
Save omeha2/7d465d534dc5d5f573d900dcb224f88c to your computer and use it in GitHub Desktop.
Keymap file for mac Atom which make it similar to windows
# CMD+. helpfull hotkey debugger
'atom-text-editor':
# Controll actions
'ctrl-s': 'core:save'
'ctrl-z': 'core:undo'
'ctrl-y': 'core:redo'
'ctrl-x': 'core:cut'
'ctrl-c': 'core:copy'
'ctrl-v': 'core:paste'
'ctrl-a': 'core:select-all'
'ctrl-e': 'editor:delete-line'
'ctrl-d': 'editor:duplicate-lines'
'ctrl-f': 'find-and-replace:show'
'ctrl-t': 'fuzzy-finder:toggle-file-finder'
# Arrow actions
'ctrl-shift-up': 'editor:move-line-up'
'ctrl-shift-down': 'editor:move-line-down'
'ctrl-up': 'editor:add-selection-above'
'ctrl-down': 'editor:add-selection-below'
'cmd-shift-down': 'editor:duplicate-lines'
'cmd-shift-up': 'editor:duplicate-lines'
'ctrl-shift-left': 'editor:select-to-previous-subword-boundary'
'ctrl-shift-right': 'editor:select-to-next-subword-boundary'
'ctrl-left': 'editor:move-to-previous-word-boundary'
'ctrl-right': 'editor:move-to-next-word-boundary'
# Other
'cmd-shift-f': 'atom-beautify:beautify-editor'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment