press Shift+D in textarea, e.shift=true
But when pressing Shift+Enter, the current behavior is e.shift = false, the expected behavior is e.shift = true
Here is the code snippet to reproduce this
<textarea
onKeyDown={e => {
if (e.name === 'd') {
console.log('d pressed', e)
}
if (e.name === 'return') {
console.log('Enter pressed', e)
}
}}
/>