X-Git-Url: http://git.scottworley.com/picsort/blobdiff_plain/f1b39471d1c70a9b47ef3716bbe5fc9591a70957..88880347cfae4f78b639e5bc18fb4912de7fb36f:/picsorter.js diff --git a/picsorter.js b/picsorter.js index e8a92a2..ff760dc 100644 --- a/picsorter.js +++ b/picsorter.js @@ -166,6 +166,7 @@ function show_commands() { commands.push(command.join(" ")); } }); + commands.push(""); $("#shell_out").text(commands.join("\n")).show(); } @@ -187,6 +188,7 @@ Mousetrap.bind(['d', 'j'], function() { change_exposure(-1); }); Mousetrap.bind('x', mark_deleted); Mousetrap.bind('X', mark_not_deleted); Mousetrap.bind('r', rotate); +Mousetrap.bind('f', function() { say(files[input_index]); }); Mousetrap.bind('c', function() { $("#name").show().focus(); return false; }); Mousetrap.bind('%', function() { say((100 * input_index / files.length).toFixed(2) + "%"); }); Mousetrap.bind('!', show_commands);