Sublime Forum

Sublime 3124: Find-Replace Dollar Sign Issues

#1

After updating to Sublime 3124, I’ve encountered problems finding and replacing dollar signs. Attempting to find text with a dollar sign inside it fails. I can find and replace dollar signs by themselves, but the result is that all new line characters are replaced with dollar signs. See the attached screen shot.

Thanks.

0 Likes

#2

You very likely have regex turned on, in which case $ matches the end of a line. In regex mode, use \$ to match a literal $.

2 Likes

#3

Arghhh.

Thanks. :slight_smile:

0 Likes