tangled
alpha
login
or
join now
leaflet.pub
/
leaflet
289
fork
atom
a tool for shared writing and social publishing
289
fork
atom
overview
issues
27
pulls
pipelines
add ctrl-shift-j/k to move block up or down
awarm.space
10 months ago
b2a6a6cf
dc21fbe0
+2
-2
1 changed file
expand all
collapse all
unified
split
components
SelectionManager.tsx
+2
-2
components/SelectionManager.tsx
···
131
131
{
132
132
metaKey: true,
133
133
shift: true,
134
134
-
key: ["ArrowDown"],
134
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
170
-
key: ["ArrowUp"],
170
170
+
key: ["ArrowUp", "K"],
171
171
handler: async () => {
172
172
let [sortedBlocks, siblings] = await getSortedSelection();
173
173
let block = sortedBlocks[0];