Implement urgency flag matcher
Currently it supports the following options: "oldest": match the first window that triggered an urgent event "latest": match the last window that triggered an urgent event
This commit is contained in:
committed by
Michael Stapelberg
parent
23abfcf7f2
commit
53541817ef
@ -250,6 +250,7 @@ id { yy_push_state(WANT_QSTRING); return TOK_ID; }
|
||||
con_id { yy_push_state(WANT_QSTRING); return TOK_CON_ID; }
|
||||
con_mark { yy_push_state(WANT_QSTRING); return TOK_MARK; }
|
||||
title { yy_push_state(WANT_QSTRING); return TOK_TITLE; }
|
||||
urgent { yy_push_state(WANT_QSTRING); return TOK_URGENT; }
|
||||
|
||||
<*>{EOL} {
|
||||
FREE(context->line_copy);
|
||||
|
Reference in New Issue
Block a user