mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
All existing .coffee keymaps are now .cson and package keymaps are now located in a keymaps folder at the root of the package.
23 lines
716 B
Plaintext
23 lines
716 B
Plaintext
'body':
|
|
'ctrl-p': 'core:move-up'
|
|
'ctrl-n': 'core:move-down'
|
|
'ctrl-b': 'core:move-left'
|
|
'ctrl-f': 'core:move-right'
|
|
'ctrl-P': 'core:select-up'
|
|
'ctrl-N': 'core:select-down'
|
|
'ctrl-F': 'core:select-right'
|
|
'ctrl-B': 'core:select-left'
|
|
'ctrl-h': 'core:backspace'
|
|
'ctrl-d': 'core:delete'
|
|
|
|
'.editor':
|
|
'alt-f': 'editor:move-to-end-of-word'
|
|
'alt-F': 'editor:select-to-end-of-word'
|
|
'alt-b': 'editor:move-to-beginning-of-word'
|
|
'alt-B': 'editor:select-to-beginning-of-word'
|
|
'ctrl-a': 'editor:move-to-first-character-of-line'
|
|
'ctrl-e': 'editor:move-to-end-of-line'
|
|
'alt-h': 'editor:backspace-to-beginning-of-word'
|
|
'alt-d': 'editor:delete-to-end-of-word'
|
|
'ctrl-k': 'editor:cut-to-end-of-line'
|