Add alternate vertex navigation keys pgup/pdgown/home/end

This commit is contained in:
Bryan Housel
2016-11-04 09:49:26 -04:00
parent 2273a6ed43
commit d1c7b5c8a2
+4 -4
View File
@@ -342,10 +342,10 @@ export function modeSelect(context, selectedIDs) {
operations.unshift(Operations.operationDelete(selectedIDs, context));
keybinding
.on('[', previousNode)
.on(']', nextNode)
.on('⌘[', firstNode)
.on('⌘]', lastNode)
.on(['[','pgup'], previousNode)
.on([']', 'pgdown'], nextNode)
.on(['⌘[', 'home'], firstNode)
.on(['⌘]', 'end'], lastNode)
.on('⎋', esc, true)
.on('space', toggleMenu);