2

When searching for text in Sublime Text, the search is sensitive to accented letters. This is not very practical when I want to find all matches regardless of the accents. Is there a setting for the search function that makes it ignore the accents?

go3d
  • 443
  • 3
  • 11

1 Answers1

3

Unfortunately Sublime Text's Find feature does not support Character Equivalence, so there is no way to get it to ignore the accents.

I explored this before in the context of snippets and replacements, but for this use case, you could write a Python plugin to build the character equivalence for you and populate the Find panel appropriately.

You may find it is enough to just temporarily replace the whole file with it's unidecoded representation and search that.

Keith Hall
  • 15,362
  • 3
  • 53
  • 71