implement 'move' command in the new parser

This commit is contained in:
Michael Stapelberg
2010-05-11 22:46:49 +02:00
parent 98dbe63e35
commit a0e33c1d68
3 changed files with 23 additions and 2 deletions

View File

@ -107,6 +107,8 @@ vertical { return TOK_VERTICAL; }
level { return TOK_LEVEL; }
up { return TOK_UP; }
down { return TOK_DOWN; }
before { return TOK_BEFORE; }
after { return TOK_AFTER; }
class { BEGIN(WANT_QSTRING); return TOK_CLASS; }
id { BEGIN(WANT_QSTRING); return TOK_ID; }