]> git.sur5r.net Git - i3/i3/blobdiff - src/cmdparse.l
Switch and Move to next workspace on the same Output. As requested in \#554
[i3/i3] / src / cmdparse.l
index 1431ec357cc3616f4bc1c4388b906eafe25625b2..d382c8db85740bc403e9e6851e4f9088d59d307c 100644 (file)
@@ -78,6 +78,8 @@ EOL (\r?\n)
      * handling strings ('workspace' command) */
 next                            { BEGIN(INITIAL); return TOK_NEXT; }
 prev                            { BEGIN(INITIAL); return TOK_PREV; }
+next_on_output                  { BEGIN(INITIAL); return TOK_NEXT_ON_OUTPUT; }
+prev_on_output                  { BEGIN(INITIAL); return TOK_PREV_ON_OUTPUT; }
 back_and_forth                  { BEGIN(INITIAL); return TOK_BACK_AND_FORTH; }
 
 <WANT_STRING>\"[^\"]+\"         {