From a5ef285705b4a65abe7d6527b2e727eebd111aba Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Fri, 28 Feb 2014 11:26:21 -0800 Subject: [PATCH] hjkl movement keys --- picsorter.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/picsorter.js b/picsorter.js index 2f9df0c..db81f05 100644 --- a/picsorter.js +++ b/picsorter.js @@ -96,12 +96,12 @@ $(function() { Mousetrap.bind('z', toggle_zoom); Mousetrap.bind('Z', function() { $("#pic").toggleClass("fit_view"); }); -Mousetrap.bind('n', function() { move_to_nondeleted(1); }); -Mousetrap.bind('p', function() { move_to_nondeleted(-1); }); -Mousetrap.bind('N', function() { input_index ++; say(input_index); setpic(); }); -Mousetrap.bind('P', function() { input_index --; say(input_index); setpic(); }); -Mousetrap.bind('b', function() { change_exposure(1); }); -Mousetrap.bind('d', function() { change_exposure(-1); }); +Mousetrap.bind(['n', 'l'], function() { move_to_nondeleted(1); }); +Mousetrap.bind(['p', 'h'], function() { move_to_nondeleted(-1); }); +Mousetrap.bind(['N', 'L'], function() { input_index ++; say(input_index); setpic(); }); +Mousetrap.bind(['P', 'H'], function() { input_index --; say(input_index); setpic(); }); +Mousetrap.bind(['b', 'k'], function() { change_exposure(1); }); +Mousetrap.bind(['d', 'j'], function() { change_exposure(-1); }); Mousetrap.bind('x', mark_deleted); Mousetrap.bind('X', mark_not_deleted); Mousetrap.bind('c', function() { $("#name").show().focus(); return false; }); -- 2.44.1