a tool for shared writing and social publishing
0
fork

Configure Feed

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

make ctrl shortcuts work

+3
+3
components/Blocks/TextBlock/keymap.ts
··· 23 23 ) => 24 24 keymap({ 25 25 "Meta-b": toggleMark(schema.marks.strong), 26 + "Ctrl-b": toggleMark(schema.marks.strong), 26 27 "Meta-u": toggleMark(schema.marks.underline), 28 + "Ctrl-u": toggleMark(schema.marks.underline), 27 29 "Meta-i": toggleMark(schema.marks.em), 30 + "Ctrl-i": toggleMark(schema.marks.em), 28 31 "Ctrl-Meta-x": toggleMark(schema.marks.strikethrough), 29 32 "Ctrl-Meta-h": toggleMark(schema.marks.highlight, { 30 33 color: useUIState.getState().lastUsedHighlight,