a tool for shared writing and social publishing

add ctrl-shift-j/k to move block up or down

+2 -2
+2 -2
components/SelectionManager.tsx
··· 131 131 { 132 132 metaKey: true, 133 133 shift: true, 134 - key: ["ArrowDown"], 134 + key: ["ArrowDown", "J"], 135 135 handler: async () => { 136 136 let [sortedBlocks, siblings] = await getSortedSelection(); 137 137 let block = sortedBlocks[0]; ··· 167 167 { 168 168 metaKey: true, 169 169 shift: true, 170 - key: ["ArrowUp"], 170 + key: ["ArrowUp", "K"], 171 171 handler: async () => { 172 172 let [sortedBlocks, siblings] = await getSortedSelection(); 173 173 let block = sortedBlocks[0];