fix(keymaps): make shift arrows and others work in inputs

This commit is contained in:
Evan Morikawa 2015-02-06 18:55:37 -05:00
parent 9b15858bf2
commit 2ec4161b85

View file

@ -50,7 +50,7 @@
'shift-delete': 'core:cut'
# Inputs are native by default.
'body input, body textarea, body *[contenteditable=true]':
'body input, body textarea, body *[contenteditable]':
'up': 'native!'
'left': 'native!'
'down': 'native!'
@ -63,12 +63,25 @@
'ctrl-left': 'native!'
'ctrl-down': 'native!'
'ctrl-right': 'native!'
'shfit-up': 'native!'
'shfit-left': 'native!'
'shfit-down': 'native!'
'shfit-right': 'native!'
'escape': 'native!'
'pageup': 'native!'
'pagedown': 'native!'
'shift-pageup': 'native!'
'shift-pagedown': 'native!'
'enter': 'native!'
'cmd-enter': 'native!'
'ctrl-enter': 'native!'
'shift-enter': 'native!'
'tab': 'core:focus-next'
'shift-tab': 'core:focus-previous'
'backspace': 'native!'
'shift-backspace': 'native!'
'delete': 'native!'
'shift-delete': 'native!'
'cmd-z': 'native!'
'cmd-Z': 'native!'
'cmd-x': 'native!'