From 2cf4fa586f29c77a8440fc51967304941c1ceceb Mon Sep 17 00:00:00 2001 From: Steffen Becker Date: Tue, 26 Feb 2013 23:51:01 +0100 Subject: [PATCH] right alt it is, other key combos --- slate.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/slate.js b/slate.js index f9e6ec7..59776fe 100644 --- a/slate.js +++ b/slate.js @@ -129,15 +129,15 @@ var hyper = ":shift,ctrl,alt,cmd"; var hyperModal = hyper + ",m:toggle"; // f = fast switching and a nice position in the home row -slate.bind("f" + hyper, hint, false); +slate.bind("[" + hyper, hint, false); // g = grid view -slate.bind("g" + hyper, grid, false); +slate.bind("]" + hyper, grid, false); // most important apps on easy accesible keys -slate.bind("j" + hyper, iterm, false); -slate.bind("k" + hyper, fork, false); -slate.bind("l" + hyper, chrome, false); -slate.bind(";" + hyper, mail, false); +slate.bind("a" + hyper, iterm, false); +slate.bind("s" + hyper, fork, false); +slate.bind("d" + hyper, chrome, false); +slate.bind("f" + hyper, mail, false); // movements in modal mode with m slate.bind("1" + hyperModal, lefthalf, false);