We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1024*2
10247412
1024**2
1024***2
1024*0xD2
one|two
one
two
one||two
one|||two
one|
one||||two
one|||||two
one||
one|*||two
|two
one|*||||two
||two
... for each available meta-symbol
upd: no, ESS version provides #, that means 1 any symbol, thus we cannot use this because of: track-num:*###7400 and similar.
#
track-num:*###7400
We'll add @ + special flag ([a-z0-9] only) + @@ to escape this flag
@
@@
Then we can use unified combinations of this, for example:
d
@d ... @
1024@d*@2
@d1024*2@
@d1024*@*2
@@d1024*@*2
@@d1024*@0xD2
@*
@done|two@
@done|@|two
@done||two@
@done||@|two
one|@d|two@
one|@d||two@
well, this is more powerful way, but probably more hard for view o_o and:
@done|@@d||two@@@
one||@@d||||two@@
v2 can also be as simple ~ ... ~ + to escape ~~:
~ ... ~
~~
~one|@d||two@~
one|~d||two~
~one|~~d||two~~~
The text was updated successfully, but these errors were encountered:
No branches or pull requests
v1 - Same char to escape1024*2
->10247412
1024**2
->1024*2
1024***2
->1024*0xD2
one|two
->one
ortwo
one||two
->one|two
one|||two
->one|
ortwo
one||||two
->one||two
one|||||two
->one||
ortwo
one|*||two
->one
or|two
one|*||||two
->one
or||two
... for each available meta-symbol
upd: no, ESS version provides
#
, that means 1 any symbol, thus we cannot use this because of:track-num:*###7400
and similar.v2 - markers via flags
We'll add
@
+ special flag ([a-z0-9] only) +@@
to escape this flagThen we can use unified combinations of this, for example:
@
+d
for disable all meta-symbols before new@
(?) ->@d ... @
1024*2
->10247412
1024@d*@2
->1024*2
or@d1024*2@
->1024*2
@d1024*@*2
->1024*0xD2
@@d1024*@*2
->@@d1024*@0xD2
-> note:@*
ok (@ + [a-z0-9])one|two
->one
ortwo
@done|two@
->one|two
@done|@|two
->one|
ortwo
@done||two@
->one||two
@done||@|two
->one||
ortwo
one|@d|two@
->one
or|two
one|@d||two@
->one
or||two
well, this is more powerful way, but probably more hard for view o_o and:
one|@d||two@
<- ?@done|@@d||two@@@
one|@d||two@
<-one||@@d||||two@@
v3 - markers via single tilde '~'
v2 can also be as simple
~ ... ~
+ to escape~~
:one|@d||two@
<-~one|@d||two@~
one|~d||two~
<-~one|~~d||two~~~
The text was updated successfully, but these errors were encountered: