]> git.scottworley.com Git - picsort/commitdiff
hjkl movement keys
authorScott Worley <scottworley@scottworley.com>
Fri, 28 Feb 2014 19:26:21 +0000 (11:26 -0800)
committerScott Worley <scottworley@scottworley.com>
Fri, 28 Feb 2014 19:26:21 +0000 (11:26 -0800)
picsorter.js

index 2f9df0ce94ee80aa2fa9d0781709df0eb7ddcde0..db81f058b13c4a4d0a08bf9fc383d87325039956 100644 (file)
@@ -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; });