Adding a bottom-half slate key trigger

master
Dustin Swan 11 years ago
parent b0672e9c30
commit 7b47e3fd55

@ -23,6 +23,11 @@ var pushUpHalf = slate.operation("push", {
"style" : "bar-resize:screenSizeY/2"
});
var pushDownHalf = slate.operation("push", {
"direction" : "down",
"style" : "bar-resize:screenSizeY/2"
});
var pushFull = slate.operation("push", {
"direction" : "up",
"style" : "bar-resize:screenSizeX"
@ -34,4 +39,5 @@ slate.bind("right:ctrl,alt,cmd", pushRightHalf);
slate.bind("right:ctrl,alt,cmd,shift", pushRightThird);
slate.bind("up:ctrl,alt,cmd", pushUpHalf);
slate.bind("down:ctrl,alt,cmd", pushDownHalf);
slate.bind("up:shift,ctrl,alt,cmd", pushFull);

Loading…
Cancel
Save