mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-12-26 10:00:50 +08:00
fix(keymaps): make shift arrows and others work in inputs
This commit is contained in:
parent
9b15858bf2
commit
2ec4161b85
1 changed files with 14 additions and 1 deletions
|
@ -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!'
|
||||
|
|
Loading…
Reference in a new issue