-
PAIR-EXP does not seems to be working with double/single quote character, ie (meow-thing-register 'qoute
'(pair ("\"") ("\""))
'(pair ("\"") ("\""))) have no effects, while full width quote characters like |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Not immediately certain why this is. It appears that the issue is with PAIR-EXPS where the start and end character is the same. Can you please file an issue so I remember to investigate? To be honest, I'm not sure why PAIR-EXP exists, since it's afaik strictly inferior to the REGEXP-EXPR. This should work fine for now (meow-thing-register 'quote
'(regexp "\"" "\"")
'(regexp "\"" "\"")) |
Beta Was this translation helpful? Give feedback.
Not immediately certain why this is. It appears that the issue is with PAIR-EXPS where the start and end character is the same. Can you please file an issue so I remember to investigate?
To be honest, I'm not sure why PAIR-EXP exists, since it's afaik strictly inferior to the REGEXP-EXPR. This should work fine for now