Add methods to increment only complete glyphs

This commit is contained in:
Shaunak Kishore
2015-11-03 01:40:27 -05:00
parent 512128af90
commit a646d34f3c
2 changed files with 13 additions and 2 deletions

View File

@ -84,8 +84,10 @@ const resetStage = () => {
const bindings = {
a: () => changeGlyph('getPreviousGlyph'),
A: () => changeGlyph('getPreviousUnverifiedGlyph'),
q: () => changeGlyph('getPreviousVerifiedGlyph'),
d: () => changeGlyph('getNextGlyph'),
D: () => changeGlyph('getNextUnverifiedGlyph'),
e: () => changeGlyph('getNextVerifiedGlyph'),
r: resetStage,
s: () => incrementStage(1),
w: () => incrementStage(-1),