Add hyper key.

This commit is contained in:
2014-10-24 06:19:23 -07:00
parent f6927e0e95
commit 274aaa1972
5 changed files with 61 additions and 18 deletions

View File

@@ -1,16 +1,19 @@
var hint = slate.op("hint", {
"characters" : "ASDFGHJKLQWERTYUIOPCVBN"
});
var grid = slate.op("grid", {
grids: {
"1920x1080": {"width": 8, "height": 6}
}
});
var hyper = ":ctrl;shift;alt;cmd";
slate.bindAll({
"esc:cmd": hint,
"space:alt": grid
});
slate.bind("h" + hyper, grid);
slate.configAll({
windowHintsIgnoreHiddenWindows: false,