Skip to content

Commit

Permalink
need $: as valid selector
Browse files Browse the repository at this point in the history
  • Loading branch information
mulle-nat committed Jan 13, 2024
1 parent 23594ed commit b1254b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MulleScionParser+Parsing.m
Original file line number Diff line number Diff line change
Expand Up @@ -894,7 +894,7 @@ static int parser_grab_text_until_selector_end( parser *p, int partial)
if( c >= 'a' && c <= 'z')
continue;

if( c == '_')
if( c == '_' || c == '$')
continue;

if( c == ':')
Expand Down

0 comments on commit b1254b9

Please sign in to comment.