Merge pull request #70 from jestin/master

Add vim keys as alternative to arrow key navigation
This commit is contained in:
Christian Paul 2019-07-11 22:37:48 +02:00 committed by GitHub
commit 95ad703199
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -208,15 +208,19 @@ class Mapscii {
this.zoomBy(-config.zoomStep); this.zoomBy(-config.zoomStep);
break; break;
case 'left': case 'left':
case 'h':
this.moveBy(0, -8/Math.pow(2, this.zoom)); this.moveBy(0, -8/Math.pow(2, this.zoom));
break; break;
case 'right': case 'right':
case 'l':
this.moveBy(0, 8/Math.pow(2, this.zoom)); this.moveBy(0, 8/Math.pow(2, this.zoom));
break; break;
case 'up': case 'up':
case 'k':
this.moveBy(6/Math.pow(2, this.zoom), 0); this.moveBy(6/Math.pow(2, this.zoom), 0);
break; break;
case 'down': case 'down':
case 'j':
this.moveBy(-6/Math.pow(2, this.zoom), 0); this.moveBy(-6/Math.pow(2, this.zoom), 0);
break; break;
case 'c': case 'c':