Allow search by task id

This commit is contained in:
Frederic Guillot
2015-07-04 18:01:42 -04:00
parent 198f3eda90
commit 32ddfb3fba
5 changed files with 64 additions and 2 deletions

View File

@@ -40,6 +40,7 @@ class Lexer
'/^(yesterday|tomorrow|today)/' => 'T_DATE',
'/^("(.*?)")/' => 'T_STRING',
"/^(\w+)/" => 'T_STRING',
"/^(#\d+)/" => 'T_STRING',
);
/**