Regexp is not applied at starting point of intendation
Status: Beta
Brought to you by:
nicarran2
The documentation to CandyFolds claims:
"the regular expression tests the line of text on the starting point of the indentation"
However, this is not true. For example, for configuring a "while" Statement in Perl, it is not sufficient to enter as regular expression
while\s*\(
It is necessary to write the regular expression like this:
\s*while\s*\(
I suspect that CandyFolds matches the regexp to the whole line, and not to the part which starts at the intendation.