string.match() does a pattern/fuzzy match that incorrectly handles external cells,
meaning cell -2, 10 will also match -2, -10, aswell as -2, 104 to -2, -10
This is fine for periodicCellResets.exemptCellNamesLike, however not periodicCellResets.exemptCellNamesExact.
So we have to handle them both differently.
This also makes tempMerge pointless, so it was removed.
string.match()
does a pattern/fuzzy match that incorrectly handles external cells, meaning cell-2, 10
will also match-2, -10
, aswell as-2, 104
to-2, -10
This is fine for
periodicCellResets.exemptCellNamesLike
, however notperiodicCellResets.exemptCellNamesExact
. So we have to handle them both differently.This also makes tempMerge pointless, so it was removed.