In hooks/ponytail-mode-tracker.js line 24, the condition cmd === '/ponytail:ponytail-review' can never be true.
cmd is derived from parts[0].replace(/^[@$]/, '') which only strips a leading @ or $ sigil — it does not alter colons. For cmd to equal /ponytail:ponytail-review, the input would need to contain that exact string already, which the regex at line 17 would never match (no 'ponytail' immediately after the sigil character).
This is dead code — likely a copy-paste error where the developer meant /ponytail:ponytail for the second disjunct.
In
hooks/ponytail-mode-tracker.jsline 24, the conditioncmd === '/ponytail:ponytail-review'can never be true.cmdis derived fromparts[0].replace(/^[@$]/, '')which only strips a leading@or$sigil — it does not alter colons. Forcmdto equal/ponytail:ponytail-review, the input would need to contain that exact string already, which the regex at line 17 would never match (no 'ponytail' immediately after the sigil character).This is dead code — likely a copy-paste error where the developer meant
/ponytail:ponytailfor the second disjunct.