Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

don't override backspace if alt or meta key (#8855)

authored by

Samuel Newman and committed by
GitHub
314c380f f2892779

+5 -1
+5 -1
src/view/com/composer/text-input/TextInput.web.tsx
··· 220 220 textInputWebEmitter.emit('publish') 221 221 return true 222 222 } 223 - if (event.code === 'Backspace') { 223 + 224 + if ( 225 + event.code === 'Backspace' && 226 + !(event.metaKey || event.altKey || event.ctrlKey) 227 + ) { 224 228 const isNotSelection = view.state.selection.empty 225 229 if (isNotSelection) { 226 230 const cursorPosition = view.state.selection.$anchor.pos