No, all known are listed there. I don't know that one but it might require adjustments depending on the theme.
You can try this jQuery javascript code on a normal theme's image.php:
`
$(function() {
$(document).keyup(function (event) {
if (event.keyCode == 37) {
// Links
<?php if (hasPrevImage()) { ?>
window.location.href="<?php echo getPrevImageURL(); ?>";
<?php } ?>
} else if (event.keyCode == 39) {
// Rechts
<?php if (hasNextImage()) { ?>
window.location.href="<?php echo getNextImageURL(); ?>";
<?php } ?>
}
});
});
`