Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Support Ctrl + Enter for non-Mac (#544)

authored by

Ollie Hsieh and committed by
GitHub
62b07f93 996dba75

+1 -1
+1 -1
src/view/com/composer/text-input/TextInput.web.tsx
··· 87 87 getImageFromUri(items, onPhotoPasted) 88 88 }, 89 89 handleKeyDown: (_, event) => { 90 - if (event.metaKey && event.code === 'Enter') { 90 + if ((event.metaKey || event.ctrlKey) && event.code === 'Enter') { 91 91 // Workaround relying on previous state from `setRichText` to 92 92 // get the updated text content during editor initialization 93 93 setRichText((state: RichText) => {