Skip to content

Commit

Permalink
Allow colons in selection identifier
Browse files Browse the repository at this point in the history
This will restore functionality to the group selector
  • Loading branch information
MomoPewpew committed Apr 2, 2024
1 parent 2b3c7f2 commit b2c67c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ COND_DELIMIT: ',';
COND_EQUALS: '=';

QUOTE : '"' ( ESC_SEQ | ~('\\'|'"') )* '"' ;
IDENTIFIER: [a-zA-Z][a-zA-Z0-9_-]*;
IDENTIFIER: [a-zA-Z0-9_:]+;
STRING: (~[,=])+?;

fragment
Expand Down

0 comments on commit b2c67c9

Please sign in to comment.