mirror of
https://github.com/atom/atom.git
synced 2026-01-22 21:38:10 -05:00
Rename functions `backspaceToBeginningOfWord` to `deleteToBeginningOfWord` and `backspaceToBeginningOfLine to `deleteToBeginningOfLine`. Rename commands `editor:backspace-to-beginning-of-word` to `delete-to-beginning-of-word` and `editor:backspace-to-beginning-of-line` to `editor:delete-to-beginning-of-line`. Fix #1791
8 lines
277 B
Plaintext
8 lines
277 B
Plaintext
'.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'
|
|
'alt-h': 'editor:delete-to-beginning-of-word'
|
|
'alt-d': 'editor:delete-to-end-of-word'
|