Is there a setting to avoid replacing $$ with $ upon inserting a wildcard file's contents? #247
Replies: 2 comments 1 reply
|
This is unintended, there likely is something in the sanitization logic that escapes it accidentally. I'll see if I can fix it. |
1 reply
|
The bug should now be fixed as of a7233a5. It was caused by the replace functions treating $ as a placeholder and $$ for the actual $ character, so in the dynamic prompt wildcards they were interpreted as a single one. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Suppose I have a wildcard file whose only entry is a dynamic prompt:
{A|B}, {0-3$$C|D|E}With "search for wildcards" enabled, TagComplete can find this file and insert the only row, but when it does it removes one of the
$, yielding{A|B}, {0-3$C|D|E}Is there a setting I'm missing to allow me to keep my dynamic prompt in tact?
All reactions