You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.1 KiB
JavaScript
44 lines
1.1 KiB
JavaScript
var pushLeftHalf = slate.operation("push", {
|
|
"direction" : "left",
|
|
"style" : "bar-resize:screenSizeX/2"
|
|
});
|
|
|
|
var pushLeftThird = slate.operation("push", {
|
|
"direction" : "left",
|
|
"style" : "bar-resize:screenSizeX/3"
|
|
});
|
|
|
|
var pushRightHalf = slate.operation("push", {
|
|
"direction" : "right",
|
|
"style" : "bar-resize:screenSizeX/2"
|
|
});
|
|
|
|
var pushRightThird = slate.operation("push", {
|
|
"direction" : "right",
|
|
"style" : "bar-resize:screenSizeX/3"
|
|
});
|
|
|
|
var pushUpHalf = slate.operation("push", {
|
|
"direction" : "up",
|
|
"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"
|
|
});
|
|
|
|
slate.bind("left:ctrl,alt,cmd", pushLeftHalf);
|
|
slate.bind("left:ctrl,alt,cmd,shift", pushLeftThird);
|
|
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);
|